多店铺需求

This commit is contained in:
Tankaikai 2025-04-07 18:15:11 +08:00
parent b1d57958ff
commit 2eec2f4303
2 changed files with 6 additions and 1 deletions

View File

@ -23,6 +23,10 @@ public class ShopBranchDTO implements Serializable {
* 店铺名称
*/
private String shopName;
/**
* 店铺类型 单店--only 连锁店--chain--加盟店join 对应原来 type
*/
private String shopType;
/**
* 账号
*/

View File

@ -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