| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:BisInspMeetMntsSms
- *
- * @author lhc
- * @date 2019-5-27
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspMeetUser extends BaseBean implements Serializable {
- public BisInspMeetUser() {
- }
- @ApiModelProperty(value = "用户id(调用方自己的用户id) 必传", name = "userId")
- private String userId;
- @ApiModelProperty(value = "用户姓名 必传", name = "name")
- private String name;
- @ApiModelProperty(value = "国家码,如中国:+86(+必须有)必传", name = "countryCode")
- private String countryCode;
- @ApiModelProperty(value = "手机号,手机号处理请看表后面具体描述 必传", name = "phone")
- private String phone;
- @ApiModelProperty(value = "座机号码 (应该包含区号,比如:010-****) 非必传", name = "telephone")
- private String telephone;
- @ApiModelProperty(value = "邮箱地址", name = "mailbox")
- private String mailbox;
- @ApiModelProperty(value = "头像地址,头像处理请看表后面具体描述", name = "avatar")
- private String avatar;
- @ApiModelProperty(value = "部门", name = "dept")
- private String dept;
- @ApiModelProperty(value = "密码(为空时默认为手机号后六位)", name = "password")
- private String password;
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getCountryCode() {
- return countryCode;
- }
- public void setCountryCode(String countryCode) {
- this.countryCode = countryCode;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- public String getTelephone() {
- return telephone;
- }
- public void setTelephone(String telephone) {
- this.telephone = telephone;
- }
- public String getMailbox() {
- return mailbox;
- }
- public void setMailbox(String mailbox) {
- this.mailbox = mailbox;
- }
- public String getAvatar() {
- return avatar;
- }
- public void setAvatar(String avatar) {
- this.avatar = avatar;
- }
- public String getDept() {
- return dept;
- }
- public void setDept(String dept) {
- this.dept = dept;
- }
- public String getPassword() {
- return password;
- }
- public void setPassword(String password) {
- this.password = password;
- }
- }
|