提交 e87eddbd 作者: zhangqiliang

墙盒申请的详情中添加墙盒品牌名称

父级 07a8dfa7
...@@ -90,6 +90,13 @@ public class WallboxApplyInstallInfoVO { ...@@ -90,6 +90,13 @@ public class WallboxApplyInstallInfoVO {
@ApiModelProperty(value = "数量") @ApiModelProperty(value = "数量")
private String number; private String number;
/**
* 墙盒品牌名称
*
* @mbg.generated
*/
@ApiModelProperty(value = "墙盒品牌名称")
private String wallboxModelName;
} }
...@@ -172,11 +172,13 @@ ...@@ -172,11 +172,13 @@
t_wallbox_apply.modify_account, t_wallbox_apply.modify_account,
t_wallbox_apply.modify_time, t_wallbox_apply.modify_time,
t_order.shipno as tracking_number, t_order.shipno as tracking_number,
t_order.status as install_status t_order.status as install_status,
tc.name as wallboxModelName
FROM t_wallbox_apply FROM t_wallbox_apply
LEFT JOIN t_order ON t_wallbox_apply.order_id = t_order.id LEFT JOIN t_order ON t_wallbox_apply.order_id = t_order.id
left join t_region reg on reg.id = t_wallbox_apply.region_id left join t_region reg on reg.id = t_wallbox_apply.region_id
left join wb_account on wb_account.id = t_wallbox_apply.check_account left join wb_account on wb_account.id = t_wallbox_apply.check_account
left join t_oem_cascade tc on tc.id = t_wallbox_apply.wallbox_model
where t_wallbox_apply.id = #{id} where t_wallbox_apply.id = #{id}
</select> </select>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论