package com.gk.firework.Domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.util.Date; @TableName("smslog") public class SmsLogInfo implements Serializable { @TableField(exist = false) private static final long serialVersionUID = 1L; @TableId(type = IdType.AUTO) /** id id **/ private Long id; /** 手机号 mobile **/ private String mobile; /** 发送时间 sendtime **/ private Date sendtime; /** 发送次数 times **/ private Integer times; /**时间类型 1小时 2天**/ private Byte type; /** id id **/ public Long getId() { return id; } /** id id **/ public void setId(Long id) { this.id = id; } /** 手机号 mobile **/ public String getMobile() { return mobile; } /** 手机号 mobile **/ public void setMobile(String mobile) { this.mobile = mobile == null ? null : mobile.trim(); } /** 发送时间 sendtime **/ public Date getSendtime() { return sendtime; } /** 发送时间 sendtime **/ public void setSendtime(Date sendtime) { this.sendtime = sendtime; } /** 发送次数 times **/ public Integer getTimes() { return times; } /** 发送次数 times **/ public void setTimes(Integer times) { this.times = times; } public Byte getType() { return type; } public void setType(Byte type) { this.type = type; } }