Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
张松 2024-11-22 15:02:30 +08:00
commit 3a97990d51
3 changed files with 3 additions and 2 deletions

View File

@ -35,7 +35,7 @@ public class TbShopInfoQueryCriteria{
private String account;
/** 精确 */
@Query(type = Query.Type.LEFT_LIKE)
@Query(type = Query.Type.INNER_LIKE)
private String shopName;
/** 精确 */

View File

@ -274,7 +274,7 @@ public class TbShopInfo implements Serializable {
@Column(name = "consume_colony")
@ApiModelProperty(value = "积分群体 all-所有 vip-仅针对会员")
private String consumeColony;
private String consumeColony = "all";
@Column(name = "is_table_fee")
@ApiModelProperty(value = "是否免除桌位费 0否1是")

View File

@ -186,6 +186,7 @@ public class TbShopInfoServiceImpl implements TbShopInfoService {
tbShopInfo.setUpdatedAt(Instant.now().toEpochMilli());
tbShopInfo.setOnSale(1);
tbShopInfo.setIsOpenYhq(resources.getIsOpenYhq());
tbShopInfo.setConsumeColony("all");
//激活码
TbMerchantRegister tbMerchantRegister = new TbMerchantRegister();
if (resources.getRegisterCode() != null){