|
@@ -53,7 +53,7 @@ public class BirthdayLog extends BaseBusinessEntity{
|
|
|
/** 查询用户ID */
|
|
|
@Excel(name = "查询用户ID")
|
|
|
@TableField("user_id")
|
|
|
- @ApiModelProperty(value = "查询用户ID")
|
|
|
+ @ApiModelProperty(value = "查询用户ID", hidden = true)
|
|
|
private Long userId;
|
|
|
|
|
|
/** 是否付费 0:未付费 1:基础版 2:高级版 */
|
|
@@ -61,61 +61,4 @@ public class BirthdayLog extends BaseBusinessEntity{
|
|
|
@TableField("is_pay")
|
|
|
@ApiModelProperty(value = "是否付费 0:未付费 1:基础版 2:高级版")
|
|
|
private Long isPay;
|
|
|
-
|
|
|
- public void setId(Long id){
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId(){
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setName(String name){
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName(){
|
|
|
- return name;
|
|
|
- }
|
|
|
- public void setSex(String sex){
|
|
|
- this.sex = sex;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSex(){
|
|
|
- return sex;
|
|
|
- }
|
|
|
- public void setBirthday(Date birthday){
|
|
|
- this.birthday = birthday;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getBirthday(){
|
|
|
- return birthday;
|
|
|
- }
|
|
|
- public void setUserId(Long userId){
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getUserId(){
|
|
|
- return userId;
|
|
|
- }
|
|
|
- public void setIsPay(Long isPay){
|
|
|
- this.isPay = isPay;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getIsPay(){
|
|
|
- return isPay;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("name", getName())
|
|
|
- .append("sex", getSex())
|
|
|
- .append("birthday", getBirthday())
|
|
|
- .append("userId", getUserId())
|
|
|
- .append("isPay", getIsPay())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|