package com.ruoyi.other.api.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author luodangjia
|
* @since 2024-11-20
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("t_shop_point")
|
@ApiModel(value="ShopPoint对象", description="")
|
public class ShopPoint implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value = "主键")
|
@TableId("id")
|
private Long id;
|
|
@ApiModelProperty(value = "门店id")
|
@TableField("shop_id")
|
private Integer shopId;
|
|
@ApiModelProperty(value = "变动类型(1=门店业绩,2=门店返佣,3=下级门店返佣)")
|
@TableField("type")
|
private Integer type;
|
|
@ApiModelProperty(value = "历史余额")
|
@TableField("historical_point")
|
private BigDecimal historicalPoint;
|
|
@ApiModelProperty(value = "变动金额")
|
@TableField("variable_point")
|
private BigDecimal variablePoint;
|
|
@ApiModelProperty(value = "变动时间")
|
@TableField("create_time")
|
private LocalDateTime createTime;
|
|
@ApiModelProperty(value = "变动用户id")
|
@TableField("create_user_id")
|
private Long createUserId;
|
|
@ApiModelProperty(value = "关联对象id")
|
@TableField("object_id")
|
private Long objectId;
|
|
|
}
|