|
|
@@ -1,179 +1,185 @@
|
|
|
-package org.jeecg.modules.hlgaccount.entity;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-import java.math.BigDecimal;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import lombok.Data;
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
-import org.jeecg.common.aspect.annotation.Dict;
|
|
|
-
|
|
|
-/**
|
|
|
- * @Description: 账户明细表
|
|
|
- * @Author: jeecg-boot
|
|
|
- * @Date: 2020-02-21
|
|
|
- * @Version: V1.0
|
|
|
- */
|
|
|
-@Data
|
|
|
-@TableName("hlg_account_detail")
|
|
|
-public class HlgAccountDetail implements Serializable {
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 主键
|
|
|
- */
|
|
|
- @TableId(type = IdType.AUTO)
|
|
|
- private java.lang.Integer id;
|
|
|
- /**
|
|
|
- * 平台企业账户
|
|
|
- */
|
|
|
- @Excel(name = "平台企业账户", width = 15)
|
|
|
- private java.lang.Integer accountId;
|
|
|
- /**
|
|
|
- * 支付(仅付款才有值)
|
|
|
- */
|
|
|
- @Excel(name = "支付(仅付款才有值)", width = 15)
|
|
|
- private java.lang.Integer paymentId;
|
|
|
- /**
|
|
|
- * 类型(0:充值 1:支付)
|
|
|
- */
|
|
|
- @Excel(name = "类型(0:充值 1:支付 2:打回)", width = 15)
|
|
|
- @Dict(dicCode = "account_type")
|
|
|
- private java.lang.Integer type;
|
|
|
- /**
|
|
|
- * 充值总金额(total_amount=amount+service_fee)
|
|
|
- */
|
|
|
- @Excel(name = "充值总金额(total_amount=amount+service_fee)", width = 15)
|
|
|
- private java.lang.Double totalAmount;
|
|
|
- /**
|
|
|
- * 项目金额
|
|
|
- */
|
|
|
- @Excel(name = "项目金额", width = 15)
|
|
|
- private java.lang.Double amount;
|
|
|
- /**
|
|
|
- * 服务费率
|
|
|
- */
|
|
|
- @Excel(name = "服务费率", width = 15)
|
|
|
- private java.lang.Double serviceRate;
|
|
|
- /**
|
|
|
- * 服务费
|
|
|
- */
|
|
|
- @Excel(name = "服务费", width = 15)
|
|
|
- private java.lang.Double serviceFee;
|
|
|
- /**
|
|
|
- * 数据权限
|
|
|
- */
|
|
|
- @Excel(name = "数据权限", width = 15)
|
|
|
- private java.lang.String sysOrgCode;
|
|
|
- /**
|
|
|
- * 是否在税务统计展示(0:否 1:是)
|
|
|
- */
|
|
|
- @Excel(name = "是否在税务统计展示(0:否 1:是)", width = 15)
|
|
|
- private java.lang.Integer isDisplay;
|
|
|
- /**
|
|
|
- * 生成时间
|
|
|
- */
|
|
|
- @Excel(name = "生成时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- private java.util.Date generateTime;
|
|
|
- /**
|
|
|
- * 生成者
|
|
|
- */
|
|
|
- @Excel(name = "生成者", width = 15)
|
|
|
- private java.lang.String generateBy;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否通过平台支付(0:否 1:是)
|
|
|
- */
|
|
|
- private Integer isThroughPlatform;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否退款(0:否 1:是)
|
|
|
- */
|
|
|
- private Integer isDrawback;
|
|
|
-
|
|
|
- /**
|
|
|
- * 付款单号(仅类型为支付时才有)
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private String paymentCode;
|
|
|
-
|
|
|
- /**
|
|
|
- * 企业名称
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private java.lang.String companyName;
|
|
|
-
|
|
|
- /**
|
|
|
- * 服务商
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private java.lang.String subcontractorName;
|
|
|
-
|
|
|
- /**
|
|
|
- * 平台名称
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private java.lang.String platformName;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否修改服务费(1:修改过)
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private Integer isEditServiceFee;
|
|
|
-
|
|
|
- /**
|
|
|
- * 备注
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private String remark;
|
|
|
-
|
|
|
- /**
|
|
|
- * 充值合计
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private Double rechargeMoney;
|
|
|
-
|
|
|
- /**
|
|
|
- * 服务费合计
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private Double serviceMoney;
|
|
|
-
|
|
|
- /**
|
|
|
- * 付款合计
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private Double paymentMoney;
|
|
|
-
|
|
|
- @TableField(exist = false)
|
|
|
- private String createTime_begin;
|
|
|
-
|
|
|
- @TableField(exist = false)
|
|
|
- private String createTime_end;
|
|
|
-
|
|
|
- /**
|
|
|
- * 企业id(判断企业是否是开心 0:不是;)
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private Integer companyId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 服务商id
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private Integer subcontractorId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 账目余额
|
|
|
- */
|
|
|
- @TableField(exist = false)
|
|
|
- private Double balanceMoney;
|
|
|
-}
|
|
|
+package org.jeecg.modules.hlgaccount.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 账户明细表
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2020-02-21
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("hlg_account_detail")
|
|
|
+public class HlgAccountDetail implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private java.lang.Integer id;
|
|
|
+ /**
|
|
|
+ * 平台企业账户
|
|
|
+ */
|
|
|
+ @Excel(name = "平台企业账户", width = 15)
|
|
|
+ private java.lang.Integer accountId;
|
|
|
+ /**
|
|
|
+ * 支付(仅付款才有值)
|
|
|
+ */
|
|
|
+ @Excel(name = "支付(仅付款才有值)", width = 15)
|
|
|
+ private java.lang.Integer paymentId;
|
|
|
+ /**
|
|
|
+ * 类型(0:充值 1:支付)
|
|
|
+ */
|
|
|
+ @Excel(name = "类型(0:充值 1:支付 2:打回)", width = 15)
|
|
|
+ @Dict(dicCode = "account_type")
|
|
|
+ private java.lang.Integer type;
|
|
|
+ /**
|
|
|
+ * 充值总金额(total_amount=amount+service_fee)
|
|
|
+ */
|
|
|
+ @Excel(name = "充值总金额(total_amount=amount+service_fee)", width = 15)
|
|
|
+ private java.lang.Double totalAmount;
|
|
|
+ /**
|
|
|
+ * 项目金额
|
|
|
+ */
|
|
|
+ @Excel(name = "项目金额", width = 15)
|
|
|
+ private java.lang.Double amount;
|
|
|
+ /**
|
|
|
+ * 服务费率
|
|
|
+ */
|
|
|
+ @Excel(name = "服务费率", width = 15)
|
|
|
+ private java.lang.Double serviceRate;
|
|
|
+ /**
|
|
|
+ * 服务费
|
|
|
+ */
|
|
|
+ @Excel(name = "服务费", width = 15)
|
|
|
+ private java.lang.Double serviceFee;
|
|
|
+ /**
|
|
|
+ * 数据权限
|
|
|
+ */
|
|
|
+ @Excel(name = "数据权限", width = 15)
|
|
|
+ private java.lang.String sysOrgCode;
|
|
|
+ /**
|
|
|
+ * 是否在税务统计展示(0:否 1:是)
|
|
|
+ */
|
|
|
+ @Excel(name = "是否在税务统计展示(0:否 1:是)", width = 15)
|
|
|
+ private java.lang.Integer isDisplay;
|
|
|
+ /**
|
|
|
+ * 生成时间
|
|
|
+ */
|
|
|
+ @Excel(name = "生成时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private java.util.Date generateTime;
|
|
|
+ /**
|
|
|
+ * 生成者
|
|
|
+ */
|
|
|
+ @Excel(name = "生成者", width = 15)
|
|
|
+ private java.lang.String generateBy;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否通过平台支付(0:否 1:是)
|
|
|
+ */
|
|
|
+ private Integer isThroughPlatform;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否退款(0:否 1:是)
|
|
|
+ */
|
|
|
+ private Integer isDrawback;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 付款单号(仅类型为支付时才有)
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String paymentCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 企业名称
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private java.lang.String companyName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务商
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private java.lang.String subcontractorName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 平台名称
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private java.lang.String platformName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否修改服务费(1:修改过)
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer isEditServiceFee;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 充值合计
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Double rechargeMoney;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务费合计
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Double serviceMoney;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 付款合计
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Double paymentMoney;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String createTime_begin;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String createTime_end;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 企业id(判断企业是否是开心 0:不是;)
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer companyId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务商id
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer subcontractorId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 账目余额
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Double balanceMoney;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 1:服务商 2:开心
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer cpType;
|
|
|
+}
|