package com.doumee.biz.zbom.model; 
 | 
  
 | 
import com.fasterxml.jackson.annotation.JsonProperty; 
 | 
import com.google.gson.annotations.SerializedName; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
@Data 
 | 
@ApiModel("志邦IAM组织更新推送Scode参数") 
 | 
public class IamFcodeModel { 
 | 
    @JsonProperty("relevanceCode") 
 | 
    @SerializedName("relevanceCode") 
 | 
    @ApiModelProperty(value = "一体商码(s码)") 
 | 
    private String relevanceCode; 
 | 
    @JsonProperty("custAccountId") 
 | 
    @SerializedName("custAccountId") 
 | 
    @ApiModelProperty(value = "加盟商id") 
 | 
    private String custAccountId; 
 | 
    @JsonProperty("customerNumber") 
 | 
    @ApiModelProperty(value = "加盟商编码") 
 | 
    @SerializedName("customerNumber") 
 | 
    private String customerNumber; 
 | 
    @JsonProperty("customerName") 
 | 
    @ApiModelProperty(value = "加盟商名称") 
 | 
    @SerializedName("customerName") 
 | 
    private String customerName; 
 | 
    @JsonProperty("customerShortName") 
 | 
    @ApiModelProperty(value = "加盟商简称") 
 | 
    @SerializedName("customerShortName") 
 | 
    private String customerShortName; 
 | 
    @JsonProperty("registrationAddress") 
 | 
    @ApiModelProperty(value = "注册地址") 
 | 
    @SerializedName("registrationAddress") 
 | 
    private String registrationAddress; 
 | 
    @JsonProperty("country") 
 | 
    @ApiModelProperty(value = "国家") 
 | 
    @SerializedName("country") 
 | 
    private String country; 
 | 
    @JsonProperty("provinceNum") 
 | 
    @ApiModelProperty(value = "省区编码·") 
 | 
    @SerializedName("provinceNum") 
 | 
    private String provinceNum; 
 | 
    @JsonProperty("provinceName") 
 | 
    @ApiModelProperty(value = "省区名称") 
 | 
    @SerializedName("provinceName") 
 | 
    private String provinceName; 
 | 
    @JsonProperty("cityNum") 
 | 
    @ApiModelProperty(value = "市编码") 
 | 
    @SerializedName("cityNum") 
 | 
    private String cityNum; 
 | 
    @JsonProperty("cityName") 
 | 
    @ApiModelProperty(value = "市名称") 
 | 
    @SerializedName("cityName") 
 | 
    private String cityName; 
 | 
    @JsonProperty("countyNum") 
 | 
    @ApiModelProperty(value = "区县编码") 
 | 
    @SerializedName("countyNum") 
 | 
    private String countyNum; 
 | 
    @JsonProperty("countyName") 
 | 
    @ApiModelProperty(value = "区县名称") 
 | 
    @SerializedName("countyName") 
 | 
    private String countyName; 
 | 
    @JsonProperty("town") 
 | 
    @ApiModelProperty(value = "乡镇") 
 | 
    @SerializedName("town") 
 | 
    private String town; 
 | 
    @JsonProperty("status") 
 | 
    @ApiModelProperty(value = "状态 中台发布的状态,对下游系统无意义,下游系统可不接") 
 | 
    @SerializedName("status") 
 | 
    private String status; 
 | 
    @JsonProperty("contactPhone") 
 | 
    @ApiModelProperty(value = "法人手机号码") 
 | 
    @SerializedName("contactPhone") 
 | 
    private String contactPhone; 
 | 
    @JsonProperty("legalPerson") 
 | 
    @ApiModelProperty(value = "法人") 
 | 
    @SerializedName("legalPerson") 
 | 
    private String legalPerson; 
 | 
    @JsonProperty("legalIdentification") 
 | 
    @ApiModelProperty(value = "法人身份证号码") 
 | 
    @SerializedName("legalIdentification") 
 | 
    private String legalIdentification; 
 | 
    @JsonProperty("accountOwner") 
 | 
    @ApiModelProperty(value = "实控人") 
 | 
    @SerializedName("accountOwner") 
 | 
    private String accountOwner; 
 | 
    @JsonProperty("accountIdentification") 
 | 
    @ApiModelProperty(value = "实控人身份证") 
 | 
    @SerializedName("accountIdentification") 
 | 
    private String accountIdentification; 
 | 
    @JsonProperty("taxRegistrationNum") 
 | 
    @ApiModelProperty(value = "纳税登记证号码") 
 | 
    @SerializedName("taxRegistrationNum") 
 | 
    private String taxRegistrationNum; 
 | 
} 
 |