fix:打标接口调用新增账户状态校验

This commit is contained in:
wangff
2025-11-17 11:12:11 +08:00
parent 35a1e1292a
commit fcef86762d
3 changed files with 26 additions and 14 deletions

View File

@@ -97,8 +97,8 @@ public class ShopInfoDAO {
* @return
*/
public Long addShopInfo(ShopInfoDO shopInfo){
shopInfoMapper.insertSelective(shopInfo);
shopInfo.setStoreId(UUIDUtils.get32UUID());
shopInfoMapper.insertSelective(shopInfo);
return shopInfo.getId();
}