feat(domain): 添加待处理动作实体备注字段
- 在WmsCoilPendingAction实体中新增remark字段 - 配置@TableField注解映射数据库remark字段 - 添加字段注释说明
This commit is contained in:
@@ -96,5 +96,11 @@ public class WmsCoilPendingAction extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
@TableLogic
|
@TableLogic
|
||||||
private Integer delFlag;
|
private Integer delFlag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
@TableField(value = "remark")
|
||||||
|
private String remark;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user