123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package com.kmall.admin.entity;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 实体
- * 表名 mall_wechat_followers
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2020-09-03 11:39:37
- */
- public class WechatFollowersEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- private Integer id;
- /**
- * 商户编号
- */
- private String merchSn;
- /**
- * 微信好友数
- */
- private Integer wechatFollowers;
- /**
- * 创建人编号
- */
- private String createrSn;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 修改人编号
- */
- private String moderSn;
- /**
- * 修改时间
- */
- private Date modTime;
- /**
- * 时间戳
- */
- private Date tstm;
- private String yearAndMonth;
- public String getYearAndMonth() {
- return yearAndMonth;
- }
- public void setYearAndMonth(String yearAndMonth) {
- this.yearAndMonth = yearAndMonth;
- }
- /**
- * 设置:主键
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取:主键
- */
- public Integer getId() {
- return id;
- }
- /**
- * 设置:商户编号
- */
- public void setMerchSn(String merchSn) {
- this.merchSn = merchSn;
- }
- /**
- * 获取:商户编号
- */
- public String getMerchSn() {
- return merchSn;
- }
- /**
- * 设置:微信好友数
- */
- public void setWechatFollowers(Integer wechatFollowers) {
- this.wechatFollowers = wechatFollowers;
- }
- /**
- * 获取:微信好友数
- */
- public Integer getWechatFollowers() {
- return wechatFollowers;
- }
- /**
- * 设置:创建人编号
- */
- public void setCreaterSn(String createrSn) {
- this.createrSn = createrSn;
- }
- /**
- * 获取:创建人编号
- */
- public String getCreaterSn() {
- return createrSn;
- }
- /**
- * 设置:创建时间
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * 获取:创建时间
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * 设置:修改人编号
- */
- public void setModerSn(String moderSn) {
- this.moderSn = moderSn;
- }
- /**
- * 获取:修改人编号
- */
- public String getModerSn() {
- return moderSn;
- }
- /**
- * 设置:修改时间
- */
- public void setModTime(Date modTime) {
- this.modTime = modTime;
- }
- /**
- * 获取:修改时间
- */
- public Date getModTime() {
- return modTime;
- }
- /**
- * 设置:时间戳
- */
- public void setTstm(Date tstm) {
- this.tstm = tstm;
- }
- /**
- * 获取:时间戳
- */
- public Date getTstm() {
- return tstm;
- }
- }
|