TASK:默认积分分配改为平均分配;超级管理员可新增教育、企业管理员账户;组织成员使用积分时需要记录creditsUsage;试用用户初始50积分

This commit is contained in:
2025-08-26 23:53:40 +08:00
parent 6e9213ec5a
commit 18c38b020e
9 changed files with 121 additions and 97 deletions

View File

@@ -37,4 +37,18 @@ public class AccountAddDTO {
private Integer systemUser;
private String organizationName;
private Integer subAccountNum;
public AccountAddDTO(String userEmail, String userName, String country, String validStartTime, String validEndTime, Integer isTrial, BigDecimal credits, Integer systemUser) {
this.userEmail = userEmail;
this.userName = userName;
this.country = country;
this.validStartTime = validStartTime;
this.validEndTime = validEndTime;
this.isTrial = isTrial;
this.credits = credits;
this.systemUser = systemUser;
}
}