AdsMatHyxtStampTaxZhptInvoiceD.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package com.ruoyi.hywz.entity;
  2. import com.alibaba.excel.annotation.ExcelIgnore;
  3. import com.alibaba.excel.annotation.ExcelProperty;
  4. import com.baomidou.mybatisplus.annotation.IdType;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import lombok.Data;
  8. import java.io.Serializable;
  9. import java.util.Date;
  10. /**
  11. * <p>
  12. * 【印花税】【智慧平台】发票信息表
  13. * </p>
  14. *
  15. * @author mybatisplus-generator
  16. * @date 2024-08-23 11:15:50
  17. */
  18. @Data
  19. public class AdsMatHyxtStampTaxZhptInvoiceD implements Serializable {
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 主键ID
  23. */
  24. @TableId(value = "id", type = IdType.ASSIGN_UUID)
  25. @ApiModelProperty(value = "主键ID")
  26. @ExcelIgnore
  27. private String id;
  28. /**
  29. * 发票类型
  30. */
  31. @ApiModelProperty(value = "发票类型")
  32. @ExcelProperty(value = "发票类型")
  33. private String invoiceType;
  34. /**
  35. * 发票状态
  36. */
  37. @ApiModelProperty(value = "发票状态")
  38. @ExcelProperty(value = "发票状态")
  39. private String invoiceStatus;
  40. /**
  41. * 发票代码
  42. */
  43. @ApiModelProperty(value = "发票代码")
  44. @ExcelProperty(value = "发票代码")
  45. private String invoiceCode;
  46. /**
  47. * 发票号码
  48. */
  49. @ApiModelProperty(value = "发票号码")
  50. @ExcelProperty(value = "发票号码")
  51. private String invoiceNumber;
  52. /**
  53. * 开票日期
  54. */
  55. @ApiModelProperty(value = "开票日期")
  56. @ExcelProperty(value = "开票日期")
  57. private String makeDate;
  58. /**
  59. * 合计金额
  60. */
  61. @ApiModelProperty(value = "合计金额")
  62. @ExcelProperty(value = "合计金额")
  63. private String totalAmt;
  64. /**
  65. * 发票税额
  66. */
  67. @ApiModelProperty(value = "发票税额")
  68. @ExcelProperty(value = "发票税额")
  69. private String invoiceTaxAmt;
  70. /**
  71. * 入账税额
  72. */
  73. @ApiModelProperty(value = "入账税额")
  74. @ExcelProperty(value = "入账税额")
  75. private String entryTaxAmt;
  76. /**
  77. * 价税合计
  78. */
  79. @ApiModelProperty(value = "价税合计")
  80. @ExcelProperty(value = "价税合计")
  81. private String amtTaxTotal;
  82. /**
  83. * 销方名称
  84. */
  85. @ApiModelProperty(value = "销方名称")
  86. @ExcelProperty(value = "销方名称")
  87. private String sellerName;
  88. /**
  89. * 经办部门
  90. */
  91. @ApiModelProperty(value = "经办部门")
  92. @ExcelProperty(value = "经办部门")
  93. private String handleDept;
  94. /**
  95. * 业务状态
  96. */
  97. @ApiModelProperty(value = "业务状态")
  98. @ExcelProperty(value = "业务状态")
  99. private String businessStatus;
  100. /**
  101. * 单据编号
  102. */
  103. @ApiModelProperty(value = "单据编号")
  104. @ExcelProperty(value = "单据编号")
  105. private String orderNo;
  106. /**
  107. * 凭证编号
  108. */
  109. @ApiModelProperty(value = "凭证编号")
  110. @ExcelProperty(value = "凭证编号")
  111. private String voucherNo;
  112. /**
  113. * 制证日期
  114. */
  115. @ApiModelProperty(value = "制证日期")
  116. @ExcelProperty(value = "制证日期")
  117. private String makeVoucherDate;
  118. /**
  119. * 制证人
  120. */
  121. @ApiModelProperty(value = "制证人")
  122. @ExcelProperty(value = "制证人")
  123. private String makeVoucherUser;
  124. /**
  125. * 用票单位
  126. */
  127. @ApiModelProperty(value = "用票单位")
  128. @ExcelProperty(value = "用票单位")
  129. private String useInvoiceOrgName;
  130. /**
  131. * 发票归属单位
  132. */
  133. @ApiModelProperty(value = "发票归属单位")
  134. @ExcelProperty(value = "发票归属单位")
  135. private String invoiceOwnerOrgName;
  136. /**
  137. * 创建用户id
  138. */
  139. @ApiModelProperty(value = "创建用户id")
  140. @ExcelIgnore
  141. private String createUserId;
  142. /**
  143. * 创建用户账号
  144. */
  145. @ApiModelProperty(value = "创建用户账号")
  146. @ExcelIgnore
  147. private String createUser;
  148. /**
  149. * 创建用户昵称
  150. */
  151. @ApiModelProperty(value = "创建用户昵称")
  152. @ExcelIgnore
  153. private String createUserName;
  154. /**
  155. * 创建时间
  156. */
  157. @ApiModelProperty(value = "创建时间")
  158. @ExcelIgnore
  159. private Date createTime;
  160. /**
  161. * 更新时间
  162. */
  163. @ApiModelProperty(value = "更新时间")
  164. @ExcelIgnore
  165. private Date updateTime;
  166. /**
  167. * 是否删除【0未删除 1已删除】
  168. */
  169. @ApiModelProperty(value = "是否删除【0未删除 1已删除】")
  170. @ExcelIgnore
  171. private Integer isDeleted;
  172. /**
  173. * 创建用户单位
  174. */
  175. @ApiModelProperty(value = "创建用户单位")
  176. @ExcelIgnore
  177. private String createUserOrgNo;
  178. /**
  179. * 创建用户单位
  180. */
  181. @ApiModelProperty(value = "创建用户单位")
  182. @ExcelIgnore
  183. private String createUserOrgName;
  184. }