| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:GwSmsLog
- *
- * @author
- * @date 2022-2-7
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class GwSmsLog extends BaseBean implements Serializable {
- @ApiModelProperty("ID")
- private String id;
- @ApiModelProperty("消息类型(0:系统消息,1:月报提醒)")
- private String type;
- @ApiModelProperty("短信号码")
- private String phone;
- @ApiModelProperty("短信内容")
- private String content;
- @ApiModelProperty("短信返回值")
- private String returnCode;
- @ApiModelProperty("短信中的验证码")
- private String code;
- @ApiModelProperty("调用短信的接口")
- private String func;
- @ApiModelProperty("IP地址")
- private String ip;
- @ApiModelProperty("发送者ID")
- private String userId;
- @ApiModelProperty("插入时间")
- private Date intm;
- @ApiModelProperty("关联用户ID")
- private String relUserId;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getReturnCode() {
- return returnCode;
- }
- public void setReturnCode(String returnCode) {
- this.returnCode = returnCode;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getFunc() {
- return func;
- }
- public void setFunc(String func) {
- this.func = func;
- }
- public String getIp() {
- return ip;
- }
- public void setIp(String ip) {
- this.ip = ip;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public String getRelUserId() {
- return relUserId;
- }
- public void setRelUserId(String relUserId) {
- this.relUserId = relUserId;
- }
- @Override
- public String toString() {
- return "GwSmsLog [" + "id=" + id + ", type=" + type + ", phone=" + phone + ", content=" + content + ", returnCode=" + returnCode + ", code=" + code + ", func=" + func + ", ip=" + ip + ", userId=" + userId + ", intm=" + intm + ", relUserId=" + relUserId + "]";
- }
- }
|