package com.gear.swx.domain;
|
|
import java.math.BigDecimal;
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 用户等级对象 swx_user_level
|
*
|
* @author czx
|
* @date 2023-11-20
|
*/
|
@Data
|
@TableName("swx_user_level")
|
public class SwxUserLevel extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 等级名称 */
|
@Excel(name = "等级名称")
|
private String name;
|
|
/** 排序 */
|
@Excel(name = "排序")
|
private Integer sortNum;
|
|
/** 达成条件1 */
|
@Excel(name = "达成条件1")
|
private BigDecimal conditions1;
|
|
/** 达成条件2 */
|
@Excel(name = "达成条件2")
|
private BigDecimal conditions2;
|
|
/** 达成条件3 */
|
@Excel(name = "达成条件3")
|
private BigDecimal conditions3;
|
|
/** 权益1 */
|
@Excel(name = "权益1")
|
private BigDecimal equity1;
|
|
/** 权益2 */
|
@Excel(name = "权益2")
|
private BigDecimal equity2;
|
|
/** 权益3 */
|
@Excel(name = "权益3")
|
private BigDecimal equity3;
|
|
private String logo;
|
|
}
|