结算记录

This commit is contained in:
2025-05-10 20:39:25 +08:00
parent 820f1763bd
commit b4c47cfd38
11 changed files with 177 additions and 75 deletions

View File

@ -27,13 +27,13 @@ public class Generator {
// 作者
private static final String AUTHOR = "chenxinzhi";
// 表注释
private static final String TABLE_COMMENT = "资金变动记录";
private static final String TABLE_COMMENT = "推广码申请记录";
// 实体类名
private static final String ENTITY_NAME = "FundsChange";
private static final String ENTITY_NAME = "PromoCodeApply";
// 表名
private static final String TABLE_NAME = "funds_change";
private static final String TABLE_NAME = "promo_code_apply";
// 实体类属性名
private static final String ENTITY_NAME_LOWER = "fundsChange";
private static final String ENTITY_NAME_LOWER = "promoCodeApply";
// 父包名
private static final String PARENT_PATH = "com.greenorange.promotion";