| 123456789101112131415161718192021222324252627 |
- export interface FormState {
- userinfotype: string; //客户类型
- customername: string; //客户名称(企业名称)
- nickname: string; //企业简称
- cardtype: number | undefined; //证件类型
- cardnum: string; //证件号码 (加密存储)
- legalpersonname: string; //法人姓名(企业)
- taxpayernum: string; //纳税人识别号
- attachment1: string; //附件1
- attachment2: string; //附件2
- attachment3: string; //附件3
- attachment4: string; //附件4
- attachment5: string; //附件5
- contactname: string; //联系人
- mobilephone: string; //手机号码 (加密存储)
- telphone: string; //联系电话(加密存储)
- provinceid: number | undefined; //省
- cityid: number | undefined; //市
- districtid: number | undefined; //地区
- remark: string; //备注
- cardaddress: string; //证件地址 (加密存储)
- username: string;//用户姓名
- cardbackphotourl: string;//背面证件照地址
- cardfrontphotourl: string;//正面证件照地址
- email: string;//Email地址(加密存储)
- }
|