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