多店铺需求
This commit is contained in:
parent
b1d57958ff
commit
2eec2f4303
|
|
@ -23,6 +23,10 @@ public class ShopBranchDTO implements Serializable {
|
|||
* 店铺名称
|
||||
*/
|
||||
private String shopName;
|
||||
/**
|
||||
* 店铺类型 单店--only 连锁店--chain--加盟店join (对应原来 type)
|
||||
*/
|
||||
private String shopType;
|
||||
/**
|
||||
* 账号
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -7,7 +7,8 @@
|
|||
select t1.*,
|
||||
t2.shop_name,
|
||||
t2.phone,
|
||||
t3.account
|
||||
t3.account,
|
||||
t2.shop_type
|
||||
from tb_shop_config t1
|
||||
left join tb_shop_info t2 on t1.id = t2.id
|
||||
left join sys_user t3 on t1.id = t3.id
|
||||
|
|
|
|||
Loading…
Reference in New Issue