| | |
| | | package com.yuanchu.mom.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("文件后缀") |
| | | private String fileType; |
| | | |
| | | @ApiModelProperty("采集地址") |
| | | private String collectUrl; |
| | | |
| | | @ApiModelProperty("存储地址") |
| | | private String storageUrl; |
| | | |
| | | @ApiModelProperty("公式") |
| | | private String formula; |
| | | |
| | |
| | | private String refery; |
| | | |
| | | @ApiModelProperty("x") |
| | | private Integer x; |
| | | private String x; |
| | | |
| | | @ApiModelProperty("y") |
| | | private Integer y; |
| | | private String y; |
| | | |
| | | @ApiModelProperty("设备id") |
| | | private Integer deviceId; |
| | | |
| | | @ApiModelProperty("检验项目名称") |
| | | @ApiModelProperty("检验项目") |
| | | private String inspectionItem; |
| | | |
| | | @ApiModelProperty("检验项子项") |
| | | private String inspectionItemSubclass; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("检验项子项") |
| | | private String insProductItem; |
| | | |
| | | @ApiModelProperty("检验项id") |
| | | private Integer structureItemParameterId; |
| | | |
| | | @ApiModelProperty("序号") |
| | | private String serialNumber; |
| | | } |