|
|
@@ -0,0 +1,136 @@
|
|
|
+package com.kxs.user.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;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 用户分润表pos(KxsUserProfit)表实体类
|
|
|
+ *
|
|
|
+ * @author 系统
|
|
|
+ * @since 2024-07-22 11:44:59
|
|
|
+ */
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Data
|
|
|
+public class KxsUserProfit extends Model<KxsUserProfit> 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;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户ID
|
|
|
+ */
|
|
|
+ @Schema(description = "用户ID")
|
|
|
+ private Integer userId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分润金额
|
|
|
+ */
|
|
|
+ @Schema(description = "分润金额")
|
|
|
+ private BigDecimal profitAmt;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态 0待入账 1已入账
|
|
|
+ */
|
|
|
+ @Schema(description = "状态 0待入账 1已入账")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分润月
|
|
|
+ */
|
|
|
+ @Schema(description = "分润月")
|
|
|
+ private Integer profitMonth;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @Schema(description = "备注")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 品牌ID
|
|
|
+ */
|
|
|
+ @Schema(description = "品牌ID")
|
|
|
+ private Integer brandId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 品牌名称
|
|
|
+ */
|
|
|
+ @Schema(description = "品牌名称")
|
|
|
+ private String brandName;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 交易类型 0新增 1存量
|
|
|
+ */
|
|
|
+ @Schema(description = "交易类型 0新增 1存量")
|
|
|
+ private Integer tradeType;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分润来源 0 直营 1团队
|
|
|
+ */
|
|
|
+ @Schema(description = "分润来源 0 直营 1团队")
|
|
|
+ private Integer isTeam;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|