123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.ruoyi.system.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 接收消息用户对象 lcd_receive_user
- *
- * @author ruoyi
- * @date 2023-01-14
- */
- public class LcdReceiveUser extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 主键 */
- private Long id;
- /** 消息id */
- @Excel(name = "消息id")
- private Long infoId;
- /** 用户手机号 */
- @Excel(name = "用户手机号")
- private String phonenumber;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setInfoId(Long infoId)
- {
- this.infoId = infoId;
- }
- public Long getInfoId()
- {
- return infoId;
- }
- public void setPhonenumber(String phonenumber)
- {
- this.phonenumber = phonenumber;
- }
- public String getPhonenumber()
- {
- return phonenumber;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("infoId", getInfoId())
- .append("phonenumber", getPhonenumber())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .toString();
- }
- }
|