You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.7 KiB
Java
83 lines
1.7 KiB
Java
package com.supervision.model;
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
import java.util.Date;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
import org.checkerframework.checker.units.qual.A;
|
|
|
|
/**
|
|
*
|
|
* @TableName vp_default_physical_indicator
|
|
*/
|
|
@TableName(value ="vp_default_physical_indicator")
|
|
@Data
|
|
@ApiModel
|
|
public class DefaultPhysicalIndicator implements Serializable {
|
|
/**
|
|
* 主键
|
|
*/
|
|
private String id;
|
|
|
|
/**
|
|
* 工具id或项目id
|
|
*/
|
|
@ApiModelProperty("工具id或项目id")
|
|
private String itemId;
|
|
|
|
/**
|
|
* 位置id
|
|
*/
|
|
@ApiModelProperty("位置id")
|
|
private String locationId;
|
|
|
|
/**
|
|
* 性别 码值参考字典表
|
|
*/
|
|
@ApiModelProperty("性别 码值参考字典表 暂不填")
|
|
private String gender;
|
|
|
|
/**
|
|
* 年龄范围 码值参考 字典表 AGE_RANGE
|
|
*/
|
|
@ApiModelProperty("年龄范围 码值参考 字典表 AGE_RANGE 暂不填")
|
|
private String ageRange;
|
|
|
|
/**
|
|
* 指标值
|
|
*/
|
|
@ApiModelProperty("指标值")
|
|
private String indicatorValue;
|
|
|
|
/**
|
|
* 创建人ID
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private String createUserId;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private LocalDateTime createTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
|
private String updateUserId;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
|
private LocalDateTime updateTime;
|
|
|
|
@TableField(exist = false)
|
|
private static final long serialVersionUID = 1L;
|
|
} |