REQ-2299 列表分页模糊查询

This commit is contained in:
yangheng 2024-04-23 10:48:54 +08:00
parent 17c676f4a3
commit 6016b586e3

View File

@ -12,11 +12,11 @@ public abstract class BaseOperatorEntity<T extends Model<T>> extends BaseDataEnt
@TableField(
fill = FieldFill.INSERT
)
protected Long createBy = 0L;
protected Long createBy;
@TableField(
fill = FieldFill.UPDATE
)
protected Long updateBy = 0L;
protected Long updateBy;
protected boolean canEqual(final Object other) {
return other instanceof BaseOperatorEntity;