package org.jeecg.modules.mdc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecg.common.system.base.entity.JeecgEntity;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.io.Serializable;
|
|
/**
|
* @Description: mdc算法公式
|
* @Author: lius
|
* @Date: 2025-08-13
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("mdc_parameter")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "mdc_parameter对象", description = "mdc算法公式")
|
public class MdcParameter extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = -1935799306658540361L;
|
|
/**
|
* 编码
|
*/
|
@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 description;
|
/**
|
* 值
|
*/
|
@Excel(name = "值", width = 15)
|
@ApiModelProperty(value = "值")
|
private String value;
|
/**
|
* 类型
|
*/
|
@Excel(name = "类型", width = 15)
|
@ApiModelProperty(value = "类型")
|
private Boolean type;
|
/**
|
* 备注
|
*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
|
}
|