|
|
@@ -0,0 +1,220 @@
|
|
|
+package com.kxs.stat.api.model;
|
|
|
+
|
|
|
+import java.io.Serial;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 个人交易统计总表(KxsUserTrade)表实体类
|
|
|
+ *
|
|
|
+ * @author 系统
|
|
|
+ * @since 2024-05-07 17:25:06
|
|
|
+ */
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Data
|
|
|
+public class KxsUserTrade extends Model<KxsUserTrade> implements Serializable {
|
|
|
+
|
|
|
+ @Serial
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键ID
|
|
|
+ */
|
|
|
+ @Schema(description = "主键ID")
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增时间
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ @Schema(description = "新增时间")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ @Schema(description = "更新时间")
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除标记,0未删除,1已删除
|
|
|
+ */
|
|
|
+ @Schema(description = "删除标记,0未删除,1已删除")
|
|
|
+ private String delFlag;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 版本
|
|
|
+ */
|
|
|
+ @Schema(description = "版本")
|
|
|
+ private Integer version;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 交易日
|
|
|
+ */
|
|
|
+ @Schema(description = "交易日")
|
|
|
+ private Integer tradeDate;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 交易月
|
|
|
+ */
|
|
|
+ @Schema(description = "交易月")
|
|
|
+ private Integer tradeMonth;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 品牌ID
|
|
|
+ */
|
|
|
+ @Schema(description = "品牌ID")
|
|
|
+ private Integer brandId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扶持期贷记卡交易额
|
|
|
+ */
|
|
|
+ @Schema(description = "扶持期贷记卡交易额")
|
|
|
+ private BigDecimal helpDirectTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扶持期借记卡
|
|
|
+ */
|
|
|
+ @Schema(description = "扶持期借记卡")
|
|
|
+ private BigDecimal helpDebitTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期贷记卡
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期贷记卡")
|
|
|
+ private BigDecimal proDirectTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期借记卡
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期借记卡")
|
|
|
+ private BigDecimal proDebitTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期A贷记卡
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期A贷记卡")
|
|
|
+ private BigDecimal proADirectTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期A借记卡
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期A借记卡")
|
|
|
+ private BigDecimal proADebitTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 统计类型 0pos 1云闪付
|
|
|
+ */
|
|
|
+ @Schema(description = "统计类型 0pos 1云闪付")
|
|
|
+ private Integer tradeType;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扶持期借记卡封顶交易额
|
|
|
+ */
|
|
|
+ @Schema(description = "扶持期借记卡封顶交易额")
|
|
|
+ private BigDecimal helpDebitCapTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扶持期借记卡封顶交易笔数
|
|
|
+ */
|
|
|
+ @Schema(description = "扶持期借记卡封顶交易笔数")
|
|
|
+ private Integer helpDebitCapNum;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期借记卡封顶交易额
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期借记卡封顶交易额")
|
|
|
+ private BigDecimal proDebitCapTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期借记卡封顶交易笔数
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期借记卡封顶交易笔数")
|
|
|
+ private Integer proDebitCapNum;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期A借记卡封顶交易额
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期A借记卡封顶交易额")
|
|
|
+ private BigDecimal proADebitCapTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期A借记卡封顶交易笔数
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期A借记卡封顶交易笔数")
|
|
|
+ private Integer proADebitCapNum;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 统计类型 0个人 1团队
|
|
|
+ */
|
|
|
+ @Schema(description = "统计类型 0个人 1团队")
|
|
|
+ private Integer totalType;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期B借记卡
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期B借记卡")
|
|
|
+ private BigDecimal proBDebitTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期B贷记卡
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期B贷记卡")
|
|
|
+ private BigDecimal proBDirectTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期B借记卡封顶交易额
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期B借记卡封顶交易额")
|
|
|
+ private BigDecimal proBDebitCapTradeAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 稳定期B借记卡封顶交易笔数
|
|
|
+ */
|
|
|
+ @Schema(description = "稳定期B借记卡封顶交易笔数")
|
|
|
+ private Integer proBDebitCapNum;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|