interface.ts 1.1 KB

123456789101112131415161718192021222324252627
  1. export interface FormState {
  2. userinfotype: number; //客户类型
  3. customername: string; //客户名称(企业名称)
  4. nickname: string; //企业简称
  5. cardtype: number | undefined; //证件类型
  6. cardnum: string; //证件号码 (加密存储)
  7. legalpersonname: string; //法人姓名(企业)
  8. taxpayernum: string; //纳税人识别号
  9. attachment1: string; //附件1
  10. attachment2: string; //附件2
  11. attachment3: string; //附件3
  12. attachment4: string; //附件4
  13. attachment5: string; //附件5
  14. contactname: string; //联系人
  15. mobilephone: string; //手机号码 (加密存储)
  16. telphone: string; //联系电话(加密存储)
  17. provinceid: number | undefined; //省
  18. cityid: number | undefined; //市
  19. districtid: number | undefined; //地区
  20. remark: string; //备注
  21. cardaddress: string; //证件地址 (加密存储)
  22. username: string;//用户姓名
  23. cardbackphotourl: string;//背面证件照地址
  24. cardfrontphotourl: string;//正面证件照地址
  25. email: string;//Email地址(加密存储)
  26. }