package com.matrix.system.hive.bean;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author helius
|
*/
|
public class SysSmsShopRecord implements Serializable {
|
private static final long serialVersionUID = -6051565176679161808L;
|
|
private Long id;
|
|
private Long ssId;
|
|
private int type;
|
|
private Integer smsCnt;
|
|
private Date createTime;
|
|
private String createBy;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getSsId() {
|
return ssId;
|
}
|
|
public void setSsId(Long ssId) {
|
this.ssId = ssId;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public Integer getSmsCnt() {
|
return smsCnt;
|
}
|
|
public void setSmsCnt(Integer smsCnt) {
|
this.smsCnt = smsCnt;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
}
|