Settlement.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package com.trade.finance.entity;
  18. import java.math.BigDecimal;
  19. import com.baomidou.mybatisplus.annotation.TableId;
  20. import com.baomidou.mybatisplus.annotation.TableLogic;
  21. import com.baomidou.mybatisplus.annotation.TableName;
  22. import java.time.LocalDateTime;
  23. import com.baomidou.mybatisplus.annotation.TableField;
  24. import java.io.Serializable;
  25. import java.util.Date;
  26. import java.util.List;
  27. import lombok.Data;
  28. import lombok.EqualsAndHashCode;
  29. import io.swagger.annotations.ApiModel;
  30. import io.swagger.annotations.ApiModelProperty;
  31. import org.springblade.core.mp.base.BaseEntity;
  32. /**
  33. * 结算表实体类
  34. *
  35. * @author BladeX
  36. * @since 2021-11-03
  37. */
  38. @Data
  39. @TableName("finance_settlement")
  40. @ApiModel(value = "Settlement对象", description = "结算表")
  41. public class Settlement implements Serializable {
  42. private static final long serialVersionUID = 1L;
  43. @TableId
  44. private Long id;
  45. /**
  46. * 系统编号
  47. */
  48. @ApiModelProperty(value = "系统编号")
  49. @TableField("Sys_No")
  50. private String sysNo;
  51. /**
  52. * 来源订单号
  53. */
  54. @ApiModelProperty(value = "来源订单号")
  55. @TableField("Src_OrderNo")
  56. private String srcOrderno;
  57. /**
  58. * 收费 、付费
  59. */
  60. @ApiModelProperty(value = "收费 、付费")
  61. @TableField("Bill_type")
  62. private String billType;
  63. /**
  64. * 客户id
  65. */
  66. @ApiModelProperty(value = "客户id")
  67. @TableField("Corp_id")
  68. private Long corpId;
  69. /**
  70. * 客户名称
  71. */
  72. @ApiModelProperty(value = "客户名称")
  73. @TableField("Corp_name")
  74. private String corpName;
  75. /**
  76. * 预计结算日期
  77. */
  78. @ApiModelProperty(value = "预计结算日期")
  79. @TableField("Plan_settlement_date")
  80. private Date planSettlementDate;
  81. /**
  82. * 结算日期
  83. */
  84. @ApiModelProperty(value = "结算日期")
  85. private Date settlementDate;
  86. /**
  87. * 币别
  88. */
  89. @ApiModelProperty(value = "币别")
  90. private String currency;
  91. /**
  92. * 汇率
  93. */
  94. @ApiModelProperty(value = "汇率")
  95. private BigDecimal exchangeRate;
  96. /**
  97. * 金额
  98. */
  99. @ApiModelProperty(value = "金额")
  100. private BigDecimal amount;
  101. /**
  102. * 手续费
  103. */
  104. @ApiModelProperty(value = "手续费")
  105. private BigDecimal serviceCharge;
  106. /**
  107. * 账户名称
  108. */
  109. @ApiModelProperty(value = "账户名称")
  110. @TableField("ACCOUNT_NAME")
  111. private String accountName;
  112. /**
  113. * 开户银行
  114. */
  115. @ApiModelProperty(value = "开户银行")
  116. @TableField("ACCOUNT_bank")
  117. private String accountBank;
  118. /**
  119. * 银行账号
  120. */
  121. @ApiModelProperty(value = "银行账号")
  122. @TableField("ACCOUNT_no")
  123. private String accountNo;
  124. /**
  125. * 备注
  126. */
  127. @ApiModelProperty(value = "备注")
  128. private String remark;
  129. /**
  130. * 特别提醒
  131. */
  132. @ApiModelProperty(value = "特别提醒")
  133. private String specialRemarks;
  134. /**
  135. * 版本
  136. */
  137. @ApiModelProperty(value = "版本")
  138. private String version;
  139. /**
  140. * 创建人
  141. */
  142. @ApiModelProperty(value = "创建人")
  143. private Long createUser;
  144. /**
  145. * 创建部门
  146. */
  147. @ApiModelProperty(value = "创建部门")
  148. private Long createDept;
  149. /**
  150. * 创建时间
  151. */
  152. @ApiModelProperty(value = "创建时间")
  153. private Date createTime;
  154. /**
  155. * 修改人
  156. */
  157. @ApiModelProperty(value = "修改人")
  158. private Long updateUser;
  159. /**
  160. * 修改时间
  161. */
  162. @ApiModelProperty(value = "修改时间")
  163. private Date updateTime;
  164. /**
  165. * 状态(0 正常 1停用)
  166. */
  167. @ApiModelProperty(value = "状态(0 正常 1停用)")
  168. private Integer status;
  169. /**
  170. * 是否已删除(0 否 1是)
  171. */
  172. @ApiModelProperty(value = "是否已删除(0 否 1是)")
  173. @TableLogic
  174. private Integer isDeleted;
  175. /**
  176. * 创建人姓名
  177. */
  178. @ApiModelProperty(value = "创建人姓名")
  179. private String createUserName;
  180. /**
  181. * 修改人姓名
  182. */
  183. @ApiModelProperty(value = "修改人姓名")
  184. private String updateUserName;
  185. /**
  186. * 收付款状态
  187. */
  188. @ApiModelProperty(value = "收付款状态")
  189. private String financeStatus;
  190. @ApiModelProperty(value = "租户id")
  191. private String tenantId;
  192. @TableField(exist = false)
  193. private List<Items> itemsList;
  194. }