| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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:BisInspMtprgSms
- *
- * @author
- * @date 2022-2-7
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspMtprgSms extends BaseBean implements Serializable {
- @ApiModelProperty("ID")
- private String id;
- @ApiModelProperty("用户ID")
- private String userId;
- @ApiModelProperty("用户名称")
- private String userName;
- @ApiModelProperty("用户电话号码")
- private String phone;
- @ApiModelProperty("是否开通短信提醒(0:不发送,1:发送)")
- private String isRemind;
- @ApiModelProperty("插入时间")
- private Date intm;
- @ApiModelProperty("更新时间")
- private Date uptm;
- @ApiModelProperty("创建人ID")
- private String createrId;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- public String getIsRemind() {
- return isRemind;
- }
- public void setIsRemind(String isRemind) {
- this.isRemind = isRemind;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getCreaterId() {
- return createrId;
- }
- public void setCreaterId(String createrId) {
- this.createrId = createrId;
- }
- @Override
- public String toString() {
- return "BisInspMtprgSms [" + "id=" + id + ", userId=" + userId + ", userName=" + userName + ", phone=" + phone + ", isRemind=" + isRemind + ", intm=" + intm + ", uptm=" + uptm + ", createrId=" + createrId + "]";
- }
- }
|