InvSourceExcel.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. package com.ydtech.modules.inv.model.excel;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import lombok.Data;
  6. import java.io.Serializable;
  7. /**
  8. * 来源表
  9. * @TableName inv_source
  10. */
  11. @TableName(value ="inv_source")
  12. @Data
  13. public class InvSourceExcel implements Serializable {
  14. /**
  15. * 保司编码
  16. */
  17. @ExcelProperty("保司编码")
  18. private String insuranceId;
  19. /**
  20. * 保司名称
  21. */
  22. @ExcelProperty("保司名称")
  23. private String insuranceName;
  24. /**
  25. * 保司机构
  26. */
  27. @ExcelProperty("保司机构")
  28. private String insuranceDept;
  29. /**
  30. * 保司机构id
  31. */
  32. @ExcelProperty("保司机构id")
  33. private String insuranceDeptId;
  34. /**
  35. * 含税/不含税
  36. */
  37. @ExcelProperty("含税/不含税")
  38. private String invSourceType;
  39. /**
  40. * 险种
  41. */
  42. @ExcelProperty("险种")
  43. private String risk;
  44. /**
  45. * 交强保单号
  46. */
  47. @ExcelProperty("交强保单号")
  48. private String jqPolicyId;
  49. /**
  50. * 交强保费(含税)
  51. */
  52. @ExcelProperty(value = "交强险保费")
  53. private String jqPremiumTax;
  54. /**
  55. * 交强保费(不含税)
  56. */
  57. @ExcelProperty(value = "交强险保费不含税")
  58. private String jqPremium;
  59. /**
  60. * 商业保单号
  61. */
  62. @ExcelProperty("商业保单号")
  63. private String syPolicyId;
  64. /**
  65. * 商业保费(含税)
  66. */
  67. @ExcelProperty("商业险保费")
  68. private String syPremiumTax;
  69. /**
  70. * 商业保费(不含税)
  71. */
  72. @ExcelProperty("商业险保费不含税")
  73. private String syPremium;
  74. /**
  75. * 非车保单号
  76. */
  77. @ExcelProperty("非车保单号")
  78. private String nonCarPolicyId;
  79. /**
  80. * 非车保费(含税)
  81. */
  82. @ExcelProperty("非车保费")
  83. private String nonCarPremiumTax;
  84. /**
  85. * 非车保费(不含税)
  86. */
  87. @ExcelProperty("非车险保费不含税")
  88. private String nonCarPremium;
  89. /**
  90. * 被保险人名字
  91. */
  92. @ExcelProperty("被保险人")
  93. private String insuredName;
  94. /**
  95. * 车牌号
  96. */
  97. @ExcelProperty("车牌号")
  98. private String licenseno;
  99. /**
  100. * 出单日期
  101. */
  102. @ExcelProperty(value = "出单日期")
  103. @JsonFormat(pattern = "yyyy年MM月dd日")
  104. private String signingTime;
  105. /**
  106. * 结算日期
  107. */
  108. @ExcelProperty(value = "结算日期")
  109. @JsonFormat(pattern = "yyyy年MM月dd日")
  110. private String clearingTime;
  111. /**
  112. * 车船税
  113. */
  114. @ExcelProperty("车船税")
  115. private String taxamount;
  116. /**
  117. * 交强应收比例
  118. */
  119. @ExcelProperty("交强应收比例")
  120. private String jqReceivableRatio;
  121. /**
  122. * 交强手续费比例
  123. */
  124. @ExcelProperty("交强手续费比例")
  125. private String jqPremiumRatio;
  126. /**
  127. * 交强非跟单比例
  128. */
  129. @ExcelProperty("交强非跟单比例")
  130. private String jqNonCopyingRatio;
  131. /**
  132. * 商业应收比例
  133. */
  134. @ExcelProperty("商业应收比例")
  135. private String syReceivableRatio;
  136. /**
  137. * 商业手续费比例
  138. */
  139. @ExcelProperty("商业手续费比例")
  140. private String syPremiumRatio;
  141. /**
  142. * 商业非跟单比例
  143. */
  144. @ExcelProperty("商业非跟单比例")
  145. private String syNonCopyingRatio;
  146. /**
  147. * 非车应收比例
  148. */
  149. @ExcelProperty("非车应收比例")
  150. private String nonCarReceivableRatio;
  151. /**
  152. * 非车手续费比例
  153. */
  154. @ExcelProperty("非车手续费比例")
  155. private String nonCarPremiumRatio;
  156. /**
  157. * 非车非跟单比例
  158. */
  159. @ExcelProperty("非车非跟单比例")
  160. private String nonCarNonCopyingRatio;
  161. /**
  162. * 手续费金额
  163. */
  164. @ExcelProperty("手续费金额")
  165. private String premium;
  166. /**
  167. * 非跟单金额
  168. */
  169. @ExcelProperty("非跟单金额")
  170. private String nonCopying;
  171. /**
  172. * 应收金额
  173. */
  174. @ExcelProperty("保司应收金额")
  175. private String receivable;
  176. @ExcelProperty("补贴比例")
  177. private String subsidyRatio;
  178. @ExcelProperty("补贴金额")
  179. private String subsidyAmount;
  180. @ExcelProperty("总应收金额")
  181. private String totalReceivableAmount;
  182. /**
  183. * 最大交强应付比例
  184. */
  185. @ExcelProperty("最大交强应付比例")
  186. private String maxJqReceivableRatio;
  187. /**
  188. * 最大交强应付比例
  189. */
  190. @ExcelProperty("最大商业应付比例")
  191. private String maxSyReceivableRatio;
  192. /**
  193. * 最大交强应付比例
  194. */
  195. @ExcelProperty("最大非车应付比例")
  196. private String maxNonCarReceivableRatio;
  197. /**
  198. * 最大应收金额
  199. */
  200. @ExcelProperty("最大应付金额")
  201. private String maxReceivable;
  202. /**
  203. * 结算状态 (0 已认领 (未结) 1已认领(结算) 2未认领 3孤儿单
  204. */
  205. @ExcelProperty("结算状态")
  206. private String clearingState;
  207. /**
  208. *保司结算状态
  209. */
  210. @ExcelProperty("保司结算状态")
  211. private String insuranceClearingState;
  212. @ExcelProperty("导入日期")
  213. @JsonFormat(pattern = "yyyy年MM月dd日")
  214. private String revenueTime;
  215. @ExcelProperty("导入人名字")
  216. private String revenueName;
  217. }