| | |
| | | @Table("yeshi_ec_extract_weixin_record")
|
| | | public class ExtractWeiXinRecord {
|
| | |
|
| | | public static int TYPE_MANUAL = 1;// 手动 |
| | | public static int TYPE_AUTO = 2; // 自动
|
| | | |
| | | public static String SENDING = "SENDING";// 发放中
|
| | | public static String SENT = "SENT"; // 已发放待领取
|
| | | public static String FAILED = "FAILED"; // 发放失败
|
| | |
| | | @Column(name = "aer_total_num")
|
| | | private Integer totalNum;
|
| | |
|
| | | // 发送方式:1手动 2自动
|
| | | @Column(name = "aer_type")
|
| | | private Integer type;
|
| | | |
| | | @Column(name = "aer_create_time")
|
| | | private Date createTime;
|
| | |
|
| | |
| | | public void setTotalNum(Integer totalNum) {
|
| | | this.totalNum = totalNum;
|
| | | }
|
| | | |
| | |
|
| | | public Integer getType() {
|
| | | return type;
|
| | | }
|
| | |
|
| | | public void setType(Integer type) {
|
| | | this.type = type;
|
| | | }
|
| | |
|
| | | }
|