数据结构增加暂停字段

This commit is contained in:
czx 2021-01-18 10:21:35 +08:00
parent 3c47781540
commit 1859407349

View File

@ -79,7 +79,7 @@ public class FtCateringDao extends FtCateringVo {
private Integer isReplace;
/**
* 作废标志
* 启用标志
*/
private Boolean flag;
@ -111,4 +111,8 @@ public class FtCateringDao extends FtCateringVo {
*/
@Excel(name = "描述")
private String cateringDescribe;
// 暂停标志
@Excel(name = "停餐")
private Integer suspendFlag;
}