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

This commit is contained in:
张松
2025-11-27 13:55:59 +08:00
3 changed files with 30 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
package com.czg.account.dto.shopinfo; package com.czg.account.dto.shopinfo;
import com.mybatisflex.annotation.Column;
import jakarta.validation.constraints.NotNull; import jakarta.validation.constraints.NotNull;
import lombok.Data; import lombok.Data;
@@ -276,4 +275,14 @@ public class ShopInfoEditDTO {
*/ */
private Long orderFenceDistance; private Long orderFenceDistance;
/**
* 上菜分钟控制开关 1-是 0-否
*/
private Integer isServeTimeControl;
/**
* 上菜时间 分钟
*/
private Integer serveTime;
} }

View File

@@ -1,6 +1,5 @@
package com.czg.account.entity; package com.czg.account.entity;
import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType; import com.mybatisflex.annotation.KeyType;
import com.mybatisflex.annotation.Table; import com.mybatisflex.annotation.Table;
@@ -116,4 +115,13 @@ public class ShopConfig implements Serializable {
*/ */
private Integer orderFenceDistance; private Integer orderFenceDistance;
/**
* 上菜分钟控制开关 1-是 0-否
*/
private Integer isServeTimeControl;
/**
* 上菜时间 分钟
*/
private Integer serveTime;
} }

View File

@@ -345,6 +345,17 @@ public class ShopInfo implements Serializable {
@Column(ignore = true) @Column(ignore = true)
private Long orderFenceDistance; private Long orderFenceDistance;
/**
* 上菜分钟控制开关 1-是 0-否
*/
@Column(ignore = true)
private Integer isServeTimeControl;
/**
* 上菜时间 分钟
*/
@Column(ignore = true)
private Integer serveTime;
/** /**
* 运营端余额 * 运营端余额
*/ */