优化代码生成细节

This commit is contained in:
AlanScipio
2024-02-05 18:31:38 +08:00
parent 636e3bce52
commit 6b6658f9a1
18 changed files with 607 additions and 302 deletions

View File

@@ -13,6 +13,16 @@ public class ExtBaseEntity extends BaseEntity {
@Serial
private static final long serialVersionUID = 1L;
/**
* 逻辑删除标志:未删除
*/
public static final int NOT_DELETE = 0;
/**
* 逻辑删除标志:已删除
*/
public static final int DELETED = 1;
/**
* 逻辑删除标志。true已删除false未删除
*/