package com.iailab.module.prod.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
@Data
|
@EqualsAndHashCode(callSuper=false)
|
@TableName("t_evaluate_index")
|
public class IndexEvaluateSystemEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 应用id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
/**
|
* 父ID
|
*/
|
private String pid;
|
/**
|
* 编码
|
*/
|
private String code;
|
/**
|
* 评价指标
|
*/
|
private String evaluateIndex;
|
/**
|
* 权重
|
*/
|
private Integer weight;
|
/**
|
* 创建人
|
*/
|
private String creator;
|
/**
|
* 创建时间
|
*/
|
private String createDate;
|
/**
|
* 更新人
|
*/
|
private String updater;
|
/**
|
* 更新时间
|
*/
|
private String updateDate;
|
}
|