| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class BisInspAllRlationDto implements Serializable {
- @ApiModelProperty(value = "用户id", notes = "", required = true)
- private String guid;
- @ApiModelProperty(value = "用户姓名", notes = "", required = true)
- private String persName;
- @ApiModelProperty(value = "手机号", notes = "", required = true)
- private String mobilenumb;
- @ApiModelProperty(value = "组长,组员字典 ", notes = "", required = true)
- private String pertype;
- public BisInspAllRlationDto() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getMobilenumb() {
- return mobilenumb;
- }
- public void setMobilenumb(String mobilenumb) {
- this.mobilenumb = mobilenumb;
- }
- public String getPertype() {
- return pertype;
- }
- public void setPertype(String pertype) {
- this.pertype = pertype;
- }
- }
|