CarFreeCarrierBillStart.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package com.jkcredit.invoice.model.entity;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.jkcredit.invoice.common.BaseEntity;
  6. import io.swagger.annotations.ApiModel;
  7. import io.swagger.annotations.ApiModelProperty;
  8. import lombok.Data;
  9. import java.io.Serializable;
  10. /**
  11. * @description: 运单结束
  12. * @author: sunzhaoning
  13. * @create: 2019-05-31 09:50
  14. * @version: V1.0
  15. **/
  16. @Data
  17. @ApiModel(value = "运单开始实体类")
  18. public class CarFreeCarrierBillStart extends BaseEntity implements Serializable {
  19. private static final long serialVersionUID = 5874389369371443058L;
  20. @TableId(type = IdType.AUTO)
  21. private Integer id;
  22. /**
  23. * 运单编号
  24. */
  25. @Excel(name = "运单编号")
  26. @ApiModelProperty(value = "运单编号")
  27. private String num;
  28. /**
  29. * 车牌号
  30. */
  31. @Excel(name = "车牌号码")
  32. @ApiModelProperty(value = "车牌号码")
  33. private String plateNumber;
  34. /**
  35. * 车牌颜色
  36. */
  37. @Excel(name = "车牌颜色")
  38. @ApiModelProperty(value = "车牌颜色")
  39. private String plateColor;
  40. /**
  41. * 运单开始时间
  42. */
  43. @Excel(name = "运单开始时间")
  44. @ApiModelProperty(value = "运单开始时间")
  45. private String startTime;
  46. /**
  47. * 运单开始地址
  48. */
  49. @Excel(name = "运单开始地址")
  50. @ApiModelProperty(value = "运单开始地址")
  51. private String sourceAddr;
  52. /**
  53. * 运单目的地址
  54. */
  55. @Excel(name = "运单目的地址")
  56. @ApiModelProperty(value = "运单目的地址")
  57. private String destAddr;
  58. /**
  59. * 运单预计完成时间
  60. */
  61. @Excel(name = "运单预计完成时间")
  62. @ApiModelProperty(value = "运单预计完成时间")
  63. private String predictEndTime;
  64. /**
  65. * 运单费用
  66. */
  67. @Excel(name = "运单费用")
  68. @ApiModelProperty(value = "运单费用")
  69. private Long fee;
  70. /**
  71. * 发票抬头类型
  72. */
  73. @ApiModelProperty(value = "发票抬头类型")
  74. private Integer titleType;
  75. /**
  76. * 税号
  77. */
  78. @Excel(name = "税号")
  79. @ApiModelProperty(value = "税号")
  80. private String taxPlayerCode;
  81. /**
  82. * 发票抬头名称
  83. */
  84. @ApiModelProperty(value = "发票抬头名称")
  85. private String name;
  86. /**
  87. * 单位地址
  88. */
  89. @ApiModelProperty(value = "单位地址")
  90. private String address;
  91. /**
  92. * 电话
  93. */
  94. @ApiModelProperty(value = "电话")
  95. private String tel;
  96. /**
  97. * 开户行
  98. */
  99. @ApiModelProperty(value = "开户行")
  100. private String bank;
  101. /**
  102. * 开户行账号
  103. */
  104. @ApiModelProperty(value = "开户行账号")
  105. private String bankAccount;
  106. /**
  107. * 是否成功
  108. */
  109. @ApiModelProperty(value = "是否成功")
  110. private Integer isSuccess;
  111. /**
  112. * 批次号
  113. */
  114. @ApiModelProperty(value = "批次号")
  115. private String batchNumber;
  116. /**
  117. * 批次id
  118. */
  119. @ApiModelProperty(value = "批次id")
  120. private String batchId;
  121. /**
  122. * 运单状态
  123. */
  124. @Excel(name = "运单状态(1:未结束,2:已结束运单,3:已开发票,4:开票中)")
  125. @ApiModelProperty(value = "运单状态")
  126. private Integer status;
  127. /**
  128. * 是否为历史运单
  129. */
  130. @ApiModelProperty(value = "是否为历史运单")
  131. private Integer isHistory;
  132. /**
  133. * 是否导出
  134. */
  135. @ApiModelProperty(value = "是否导出 1已导出,2未导出")
  136. private Integer isExport;
  137. /**
  138. * 创建时间开始区间
  139. */
  140. private String createStartTime;
  141. /**
  142. * 创建时间结束区间
  143. */
  144. private String createEndTime;
  145. /**
  146. * 运单查询开始时间区间
  147. */
  148. private String billStartTime;
  149. /**
  150. * 运单查询结束时间区间
  151. */
  152. private String billEndTime;
  153. /**
  154. * 是否自动开票标记
  155. */
  156. private Integer autoFlag;
  157. /**
  158. * 是否遗留数据:1(不是遗留数据)2(是遗留数据)
  159. */
  160. @ApiModelProperty(value = "是否遗留数据:1(不是遗留数据)2(是遗留数据)")
  161. private Integer isLegacyData;
  162. private String errorMsg;
  163. }