| | |
| | | @Data |
| | | @TableName("T_MM_ITEM_OUTPUT") |
| | | public class MmItemOutputEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键 |
| | | */ |
| | |
| | | private String resulttableid; |
| | | |
| | | /** |
| | | * 结果 |
| | | */ |
| | | @NotBlank(message="结果不能为空") |
| | | private String resultstr; |
| | | |
| | | /** |
| | | * 结果类型 |
| | | */ |
| | | private Integer resultType; |
| | | |
| | | /** |
| | | * 结果索引 |
| | | */ |
| | | private Integer resultIndex; |
| | | |
| | | /** |
| | | * 数据点名称 |
| | | */ |
| | | @NotBlank(message="数据点名称不能为空") |
| | |
| | | * 排序(默认值1) |
| | | */ |
| | | private BigDecimal outputorder; |
| | | |
| | | /** |
| | | * 结果名称 |
| | | */ |
| | | private String resultName; |
| | | |
| | | /** |
| | | * 是否累计 |
| | | */ |
| | | private Integer iscumulant; |
| | | |
| | | /** |
| | | * 累计除数 |
| | | */ |
| | | private Integer cumuldivisor; |
| | | |
| | | /** |
| | | * 累计测点 |
| | | */ |
| | | private String cumulpoint; |
| | | } |