| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | private Integer id; |
| | | //外键:ins_product表id |
| | | private Integer insProductId; |
| | | |
| | | @ApiModelProperty("项目参数id") |
| | | private Integer structureItemParameterId; |
| | | //检验项 |
| | | private String inspectionItem; |
| | | //检验项子类 |
| | |
| | | private String radius; |
| | | //电缆标识 |
| | | private String cableTag; |
| | | // 重复标识 |
| | | private String repetitionTag; |
| | | //原材料批量标识 |
| | | private String rawMaterialTag; |
| | | //复测次数标识 |
| | | private String retestTag; |
| | | //排序 |
| | | private Integer sort; |
| | | // 绑定值不参加展示, 只参加计算 |
| | | @ApiModelProperty(value = "是否是绑定值, 0否, 1是") |
| | | private Integer isBinding; |
| | | |
| | | @ApiModelProperty(value = "自关联(绑定id)") |
| | | private Integer bindingProductId; |
| | | } |
| | | |