We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
项目几乎所有的实体都设立了 deletedFlag 字段,但并没有实现 mybatis-plus 的逻辑删除。
deletedFlag
mybatis-plus
如:
@Data @TableName(value = "t_position") public class PositionEntity { /** 字段信息 */ private Boolean deletedFlag; }
是否应该加上 TableLogic 实现逻辑删除呢?
TableLogic
@TableLogic(value = "0", delval = "1") private Boolean deletedFlag;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
项目几乎所有的实体都设立了
deletedFlag
字段,但并没有实现mybatis-plus
的逻辑删除。如:
是否应该加上
TableLogic
实现逻辑删除呢?The text was updated successfully, but these errors were encountered: