CompanyDevOut.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package com.winhc.task.bean;
  2. import com.alibaba.excel.annotation.ExcelIgnore;
  3. import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
  4. import com.alibaba.excel.annotation.ExcelProperty;
  5. import lombok.AllArgsConstructor;
  6. import lombok.Data;
  7. import lombok.NoArgsConstructor;
  8. /**
  9. * company
  10. * 测试对接
  11. */
  12. @Data
  13. @AllArgsConstructor
  14. @NoArgsConstructor
  15. @ExcelIgnoreUnannotated
  16. public class CompanyDevOut {
  17. @ExcelProperty("自有企业id")
  18. private String company_id;
  19. @ExcelProperty("公司名称")
  20. private String name;
  21. @ExcelProperty("公司历史名称")
  22. private String history_names;
  23. @ExcelProperty("注册号")
  24. private String reg_number;
  25. @ExcelProperty("公司类型")
  26. private String company_org_type;
  27. @ExcelProperty("注册地址")
  28. private String reg_location;
  29. @ExcelProperty("注册时间")
  30. private String estiblish_time;
  31. @ExcelProperty("营业时间开始日期")
  32. private String from_time;
  33. @ExcelProperty("营业时间结束日期")
  34. private String to_time;
  35. @ExcelProperty("经营范围")
  36. private String business_scope;
  37. @ExcelProperty("登记机关")
  38. private String reg_institute;
  39. @ExcelProperty("核准日期")
  40. private String approved_time;
  41. @ExcelProperty("企业状态")
  42. private String reg_status;
  43. @ExcelProperty("注册资本")
  44. private String reg_capital;
  45. @ExcelProperty("组织机构代码")
  46. private String org_number;
  47. @ExcelProperty("组织机构代码批准单位")
  48. private String org_approved_institute;
  49. @ExcelProperty("机构类型")
  50. private String company_type;
  51. @ExcelProperty("统一信用代码")
  52. private String credit_code;
  53. @ExcelProperty("省份code")
  54. private String province_code;
  55. @ExcelProperty("市code")
  56. private String city_code;
  57. @ExcelProperty("县区code")
  58. private String county_code;
  59. @ExcelProperty("注册资本金额")
  60. private String reg_capital_amount;
  61. @ExcelProperty("注册资本币种")
  62. private String reg_capital_currency;
  63. @ExcelProperty("实收资本金额")
  64. private String actual_capital_amount;
  65. @ExcelProperty("实收资本币种")
  66. private String actual_capital_currency;
  67. @ExcelProperty("公司注册状态标准化")
  68. private String reg_status_std;
  69. @ExcelProperty("职工参保人数")
  70. private String social_security_staff_num;
  71. @ExcelProperty("注销时间")
  72. private String cancel_date;
  73. @ExcelProperty("注销原因")
  74. private String cancel_reason;
  75. @ExcelProperty("吊销时间")
  76. private String revoke_date;
  77. @ExcelProperty("吊销原因")
  78. private String revoke_reason;
  79. // @ExcelProperty("邮箱")
  80. // private String emails;
  81. // @ExcelProperty("电话")
  82. // private String phones;
  83. @ExcelProperty("创建时间")
  84. private String create_time;
  85. @ExcelProperty("是否删除")
  86. private String deleted;
  87. @ExcelProperty("更新时间")
  88. private String update_time;
  89. @ExcelIgnore
  90. private String legal_entities;
  91. @ExcelProperty("法人信息")
  92. private String legal_entity_name;
  93. }