添加 字段dayNum 账号的使用天数

This commit is contained in:
liuchengqian 2023-03-25 20:02:02 +08:00
parent da0b0fd745
commit 772b88f576

View File

@ -103,6 +103,11 @@ public class SysUserEntity implements Serializable {
*/ */
private String placeHolder; private String placeHolder;
/**
* 账号的使用天数
*/
private Long dayNum;
/** /**
* VIP时间范围列表Json * VIP时间范围列表Json
*/ */
@ -272,6 +277,14 @@ public class SysUserEntity implements Serializable {
this.placeHolder = placeHolder; this.placeHolder = placeHolder;
} }
public Long getDayNum() {
return dayNum;
}
public void setDayNum(Long dayNum) {
this.dayNum = dayNum;
}
public String getVipTimeRangeJson() { public String getVipTimeRangeJson() {
return vipTimeRangeJson; return vipTimeRangeJson;
} }
@ -303,6 +316,7 @@ public class SysUserEntity implements Serializable {
", remark='" + remark + '\'' + ", remark='" + remark + '\'' +
", pushId='" + pushId + '\'' + ", pushId='" + pushId + '\'' +
", placeHolder='" + placeHolder + '\'' + ", placeHolder='" + placeHolder + '\'' +
", dayNum=" + dayNum +
", vipTimeRangeJson='" + vipTimeRangeJson + '\'' + ", vipTimeRangeJson='" + vipTimeRangeJson + '\'' +
'}'; '}';
} }