package org.jeecg.modules.mdc.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* @Description: MDC系统参数
|
* @Author: LiuS
|
* @Date: 2023-04-17
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("mdc_system_parameters")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "mdc_system_parameters对象", description = "MDC系统参数")
|
public class MdcSystemParameters {
|
|
/**
|
* 主键
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
@ApiModelProperty(value = "主键")
|
private String id;
|
/**
|
* 标识
|
*/
|
@Excel(name = "标识", width = 15)
|
@ApiModelProperty(value = "标识")
|
private String code;
|
/**
|
* 名称
|
*/
|
@Excel(name = "名称", width = 15)
|
@ApiModelProperty(value = "名称")
|
private String name;
|
/**
|
* 值
|
*/
|
@Excel(name = "值", width = 15)
|
@ApiModelProperty(value = "值")
|
private String value;
|
/**
|
* 类别
|
*/
|
@Excel(name = "类别", width = 15)
|
@ApiModelProperty(value = "类别")
|
private Integer category;
|
/**
|
* 描述
|
*/
|
@Excel(name = "描述", width = 15)
|
@ApiModelProperty(value = "描述")
|
private String description;
|
/**
|
* 创建人
|
*/
|
@Excel(name = "创建人", width = 15)
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**
|
* 创建时间
|
*/
|
@Excel(name = "创建时间", width = 20, 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")
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
/**
|
* 更新人
|
*/
|
@Excel(name = "更新人", width = 15)
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**
|
* 更新时间
|
*/
|
@Excel(name = "更新时间", width = 20, 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")
|
@ApiModelProperty(value = "更新时间")
|
private Date updateTime;
|
}
|