【SysApp】自动填充

pull/3/head
chenjinlong 2020-12-21 21:40:09 +08:00 committed by fengshuonan
parent 5b377be044
commit 6e26b34042
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package cn.stylefeng.roses.kernel.app.modular.entity;
import cn.stylefeng.roses.kernel.db.api.pojo.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
@ -51,7 +52,7 @@ public class SysApp extends BaseEntity {
/**
* Y-N-
*/
@TableField("del_flag")
@TableField(value = "del_flag", fill = FieldFill.INSERT)
private String delFlag;
}