All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.mip.vopackage.HOSResultQueryUserDataDTO Maven / Gradle / Ivy

There is a newer version: 3.6.1.9
Show newest version
package com.founder.mip.vopackage;

import java.io.Serializable;

public class HOSResultQueryUserDataDTO implements Serializable {
    private String idNo;//1 idNo 证件号码 字符型 40 Y
    private String userName;//2 userName 用户姓名 字符型 40 Y
    private String idType;//3 idType 证件类别 字符型 3 Y 字典人员证件类型(psn_cert_type)
    private String naty;//4 naty 民族 字符型 3 Y Y 字典民族(naty)
    private String psnNo;//5 psnNo 人员编号 字符型 30 Y
    private HOSResultQueryUserDataExtDataDTO extData = new HOSResultQueryUserDataExtDataDTO();//extData 扩展出参 对象

    public String getIdNo() {
        return idNo;
    }

    public void setIdNo(String idNo) {
        this.idNo = idNo;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getIdType() {
        return idType;
    }

    public void setIdType(String idType) {
        this.idType = idType;
    }

    public String getNaty() {
        return naty;
    }

    public void setNaty(String naty) {
        this.naty = naty;
    }

    public String getPsnNo() {
        return psnNo;
    }

    public void setPsnNo(String psnNo) {
        this.psnNo = psnNo;
    }

    public HOSResultQueryUserDataExtDataDTO getExtData() {
        return extData;
    }

    public void setExtData(HOSResultQueryUserDataExtDataDTO extData) {
        this.extData = extData;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy