| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * Created by 61618 on 2019/4/17.
- */
- public class PersAllDto extends BaseBean {
- @ApiModelProperty("人员id")
- private String guid;
- @ApiModelProperty("人员名称")
- private String persName;
- @ApiModelProperty("人员类型")
- private String persType;
- public String getPersType() {
- return persType;
- }
- public void setPersType(String persType) {
- this.persType = persType;
- }
- 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;
- }
- @Override
- public String toString() {
- return "PersAllDto{" +
- "guid='" + guid + '\'' +
- ", persName='" + persName + '\'' +
- ", persType='" + persType + '\'' +
- '}';
- }
- }
|