From d1f26741bddf6f512d62c0100d42c52be8d37e76 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 06 二月 2021 15:35:40 +0800 Subject: [PATCH] 工具类优化 --- fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralDetail.java | 248 ++++++++++++++++++++++++++----------------------- 1 files changed, 133 insertions(+), 115 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralDetail.java b/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralDetail.java index 3602b08..58a4b0e 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralDetail.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralDetail.java @@ -1,115 +1,133 @@ -package com.yeshi.fanli.entity.integral; - -import java.util.Date; - -import org.yeshi.utils.mybatis.Column; -import org.yeshi.utils.mybatis.Table; - -import com.google.gson.annotations.Expose; - -/** - * 绉垎鏄庣粏 - * - * @author Administrator - * - */ -@Table("yeshi_ec_integral_detail") -public class IntegralDetail { - - @Expose - @Column(name = "td_id") - private Long id; - - @Column(name = "td_uid") - private Long uid; // 鐢ㄦ埛id - - @Expose - @Column(name = "td_money") - private Integer money; // 绉垎 - - @Expose - @Column(name = "td_title") - private String title; // 鏍囬 - - @Expose - @Column(name = "td_desc_info") - private String descInfo; // 璇︾粏淇℃伅 - - @Expose - @Column(name = "td_remark") - private String remark; // 澶囨敞 - - @Expose - @Column(name = "td_unique_key") - private String uniqueKey; // 鍞竴鍊� - - @Expose - @Column(name = "td_create_time") - private Date createTime; - - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getUid() { - return uid; - } - - public void setUid(Long uid) { - this.uid = uid; - } - - public Integer getMoney() { - return money; - } - - public void setMoney(Integer money) { - this.money = money; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getDescInfo() { - return descInfo; - } - - public void setDescInfo(String descInfo) { - this.descInfo = descInfo; - } - - public String getRemark() { - return remark; - } - - public void setRemark(String remark) { - this.remark = remark; - } - - public Date getCreateTime() { - return createTime; - } - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } - - public String getUniqueKey() { - return uniqueKey; - } - - public void setUniqueKey(String uniqueKey) { - this.uniqueKey = uniqueKey; - } - -} +package com.yeshi.fanli.entity.integral; + +import java.util.Date; + +import org.yeshi.utils.mybatis.Column; +import org.yeshi.utils.mybatis.Table; + +import com.google.gson.annotations.Expose; + +/** + * 绉垎鏄庣粏 + * + * @author Administrator + * + */ +@Table("yeshi_ec_integral_detail") +public class IntegralDetail { + + @Expose + @Column(name = "td_id") + private Long id; + + @Column(name = "td_uid") + private Long uid; // 鐢ㄦ埛id + + @Expose + @Column(name = "td_money") + private Integer money; // 绉垎 + + @Expose + @Column(name = "td_title") + private String title; // 鏍囬 + + @Expose + @Column(name = "td_desc_info") + private String descInfo; // 璇︾粏淇℃伅 + + @Expose + @Column(name = "td_remark") + private String remark; // 澶囨敞 + + @Expose + @Column(name = "td_unique_key") + private String uniqueKey; // 鍞竴鍊� + + @Expose + @Column(name = "td_create_time") + private Date createTime; + + private String nickName;// 鏄电О + private String portrait;// 澶村儚 + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getUid() { + return uid; + } + + public void setUid(Long uid) { + this.uid = uid; + } + + public Integer getMoney() { + return money; + } + + public void setMoney(Integer money) { + this.money = money; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getDescInfo() { + return descInfo; + } + + public void setDescInfo(String descInfo) { + this.descInfo = descInfo; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public String getUniqueKey() { + return uniqueKey; + } + + public void setUniqueKey(String uniqueKey) { + this.uniqueKey = uniqueKey; + } + + public String getNickName() { + return nickName; + } + + public void setNickName(String nickName) { + this.nickName = nickName; + } + + public String getPortrait() { + return portrait; + } + + public void setPortrait(String portrait) { + this.portrait = portrait; + } + +} -- Gitblit v1.8.0