添加查询Code-Create数据库,监控新增付费记录并对付费用户进行账号新增或延长账号有效期的操作

This commit is contained in:
2024-06-21 15:11:31 +08:00
parent 8457a61ded
commit 30d5466805
5 changed files with 104 additions and 15 deletions

View File

@@ -87,5 +87,12 @@ public class Account implements Serializable {
*/
private BigDecimal credits;
private Integer SystemUser;
/**
* 用于区分游客与系统用户
* 0 游客
* 1 年付用户
* 2 月付用户
* 3 试用用户
*/
private Integer systemUser;
}