| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | |
| | | @Schema(description = "内控值") |
| | | private String controlValue; |
| | | |
| | | @Schema(description = "参数类型(0-文字, 1-数字)") |
| | | private Integer parameterType; |
| | | |
| | | @Schema(description = "最大值") |
| | | private BigDecimal maxValue; |
| | | |
| | | @Schema(description = "最小值") |
| | | private BigDecimal minValue; |
| | | |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |