|
@@ -4,6 +4,7 @@ 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.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -16,184 +17,221 @@ import java.util.List;
|
|
|
@TableName("u_trial_cy_third_report")
|
|
|
@Data
|
|
|
public class TrialCyThirdReport {
|
|
|
+ @ApiModelProperty("唯一id")
|
|
|
@TableId(type = IdType.INPUT)
|
|
|
private Long pKeyId;
|
|
|
/**
|
|
|
* 合同id
|
|
|
*/
|
|
|
+ @ApiModelProperty("合同id")
|
|
|
private Long contractId;
|
|
|
/**
|
|
|
* ID
|
|
|
*/
|
|
|
+ @ApiModelProperty("成渝的id")
|
|
|
@TableField("id")
|
|
|
public String ID;
|
|
|
/**
|
|
|
* 报告类型(0:外委检测,1:第三方检测,2:扫描上传报告)
|
|
|
*/
|
|
|
+ @ApiModelProperty("报告类型(0:外委检测,1:第三方检测,2:扫描上传报告)")
|
|
|
public Integer thirdType;
|
|
|
/**
|
|
|
* 委托编号
|
|
|
*/
|
|
|
+ @ApiModelProperty("委托编号")
|
|
|
@TableField("consign_no")
|
|
|
public String ConsignNo;
|
|
|
/**
|
|
|
* 报告编号
|
|
|
*/
|
|
|
+ @ApiModelProperty("报告编号")
|
|
|
@TableField("report_no")
|
|
|
public String ReportNo;
|
|
|
/**
|
|
|
* 取样时间 格式如:“2022-06-21”
|
|
|
*/
|
|
|
+ @ApiModelProperty("取样时间 格式如:“2022-06-21”")
|
|
|
@TableField("take_sampling_date")
|
|
|
public String TakeSamplingDate;
|
|
|
/**
|
|
|
* 送样时间 格式如:“2022-06-21”
|
|
|
*/
|
|
|
+ @ApiModelProperty("送样时间 格式如:“2022-06-21”")
|
|
|
@TableField("send_sample_date")
|
|
|
public String SendSampleDate;
|
|
|
/**
|
|
|
* 检测时间 格式如:“2022-06-21”
|
|
|
*/
|
|
|
+ @ApiModelProperty("检测时间 格式如:“2022-06-21”")
|
|
|
@TableField("test_date")
|
|
|
public String TestDate;
|
|
|
/**
|
|
|
* 报告时间 格式如:“2022-06-21”
|
|
|
*/
|
|
|
+ @ApiModelProperty("报告时间 格式如:“2022-06-21”")
|
|
|
@TableField("report_date")
|
|
|
public String ReportDate;
|
|
|
/**
|
|
|
* 委托单位
|
|
|
*/
|
|
|
+ @ApiModelProperty("委托单位")
|
|
|
@TableField("consign_unit")
|
|
|
public String ConsignUnit;
|
|
|
/**
|
|
|
* 检测机构
|
|
|
*/
|
|
|
+ @ApiModelProperty("检测机构")
|
|
|
@TableField("accept_test_unit")
|
|
|
public String AcceptTestUnit;
|
|
|
/**
|
|
|
* 送样人
|
|
|
*/
|
|
|
+ @ApiModelProperty("送样人")
|
|
|
@TableField("send_sample_person")
|
|
|
public String SendSamplePerson;
|
|
|
/**
|
|
|
* 接样人
|
|
|
*/
|
|
|
+ @ApiModelProperty("接样人")
|
|
|
@TableField("witness_person")
|
|
|
public String WitnessPerson;
|
|
|
/**
|
|
|
* 工程部位
|
|
|
*/
|
|
|
+ @ApiModelProperty("工程部位")
|
|
|
@TableField("project_part")
|
|
|
public String ProjectPart;
|
|
|
/**
|
|
|
* 取样地点
|
|
|
*/
|
|
|
+ @ApiModelProperty("取样地点")
|
|
|
@TableField("sampling_place")
|
|
|
public String SamplingPlace;
|
|
|
/**
|
|
|
* 样品名称
|
|
|
*/
|
|
|
+ @ApiModelProperty("样品名称")
|
|
|
@TableField("sample_name")
|
|
|
public String SampleName;
|
|
|
/**
|
|
|
* 委托单文件下载地址
|
|
|
*/
|
|
|
+ @ApiModelProperty("委托单文件下载地址")
|
|
|
@TableField("consign_doc_file_path")
|
|
|
public String ConsignDocFilePath;
|
|
|
/**
|
|
|
* 记录单文件下载地址
|
|
|
*/
|
|
|
+ @ApiModelProperty("记录单文件下载地址")
|
|
|
@TableField("record_doc_file_path")
|
|
|
public String RecordDocFilePath;
|
|
|
/**
|
|
|
* 报告单文件下载地址
|
|
|
*/
|
|
|
+ @ApiModelProperty("报告单文件下载地址")
|
|
|
@TableField("report_doc_file_path")
|
|
|
public String ReportDocFilePath;
|
|
|
/**
|
|
|
* 检测依据
|
|
|
*/
|
|
|
+ @ApiModelProperty("检测依据")
|
|
|
@TableField("test_standard")
|
|
|
public String TestStandard;
|
|
|
/**
|
|
|
* 评定标准
|
|
|
*/
|
|
|
+ @ApiModelProperty("评定标准")
|
|
|
@TableField("assess_standard")
|
|
|
public String AssessStandard;
|
|
|
/**
|
|
|
* 检测结论
|
|
|
*/
|
|
|
+ @ApiModelProperty("检测结论")
|
|
|
@TableField("test_conclusion")
|
|
|
public String TestConclusion;
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
|
+ @ApiModelProperty("备注")
|
|
|
@TableField("memo")
|
|
|
public String Memo;
|
|
|
/**
|
|
|
* 期数
|
|
|
*/
|
|
|
+ @ApiModelProperty("期数")
|
|
|
@TableField("period_num")
|
|
|
public String PeriodNum;
|
|
|
/**
|
|
|
* 是否合格
|
|
|
*/
|
|
|
+ @ApiModelProperty("是否合格:1 合格, 0 不合格")
|
|
|
@TableField("is_qualified")
|
|
|
public String IsQualified;
|
|
|
/**
|
|
|
* 样品编号
|
|
|
*/
|
|
|
+ @ApiModelProperty("样品编号")
|
|
|
@TableField("sample_code")
|
|
|
public String SampleCode;
|
|
|
/**
|
|
|
* 规格型号
|
|
|
*/
|
|
|
+ @ApiModelProperty("规格型号")
|
|
|
@TableField("gui_ge_xing_hao")
|
|
|
public String GuiGeXingHao;
|
|
|
/**
|
|
|
* 生产厂家
|
|
|
*/
|
|
|
+ @ApiModelProperty("生产厂家")
|
|
|
@TableField("sheng_chan_cj")
|
|
|
public String ShengChanCJ;
|
|
|
/**
|
|
|
* 产地
|
|
|
*/
|
|
|
+ @ApiModelProperty("产地")
|
|
|
@TableField("chan_di")
|
|
|
public String ChanDi;
|
|
|
/**
|
|
|
* 样品数量
|
|
|
*/
|
|
|
+ @ApiModelProperty("样品数量")
|
|
|
@TableField("sample_num")
|
|
|
public String SampleNum;
|
|
|
/**
|
|
|
* 检测机构资质证书编号
|
|
|
*/
|
|
|
+ @ApiModelProperty("检测机构资质证书编号")
|
|
|
@TableField("consign_unit_ability")
|
|
|
public String ConsignUnitAbility;
|
|
|
/**
|
|
|
* 批号
|
|
|
*/
|
|
|
+ @ApiModelProperty("批号")
|
|
|
@TableField("batch_num")
|
|
|
public String BatchNum;
|
|
|
/**
|
|
|
* 代表数量
|
|
|
*/
|
|
|
+ @ApiModelProperty("代表数量")
|
|
|
@TableField("quantity")
|
|
|
public String Quantity;
|
|
|
/**
|
|
|
* 单位
|
|
|
*/
|
|
|
+ @ApiModelProperty("单位")
|
|
|
@TableField("unit")
|
|
|
public String Unit;
|
|
|
/**
|
|
|
* 类型ID
|
|
|
*/
|
|
|
+ @ApiModelProperty("类型ID")
|
|
|
@TableField("consign_test_cls_id")
|
|
|
public String ConsignTestClsID;
|
|
|
/**
|
|
|
* 结论
|
|
|
*/
|
|
|
+ @ApiModelProperty("结论")
|
|
|
@TableField("result")
|
|
|
public String Result;
|
|
|
/**
|
|
@@ -202,11 +240,13 @@ public class TrialCyThirdReport {
|
|
|
* 0:未删除
|
|
|
* 1:已删除
|
|
|
*/
|
|
|
+ @ApiModelProperty("是否已删除 0:未删除 1:已删除")
|
|
|
@TableField("is_deleted")
|
|
|
public String IsDeleted;
|
|
|
/**
|
|
|
* 删除时间
|
|
|
*/
|
|
|
+ @ApiModelProperty("删除时间")
|
|
|
@TableField("delete_time")
|
|
|
public String DeleteTime;
|
|
|
/**
|
|
@@ -214,17 +254,20 @@ public class TrialCyThirdReport {
|
|
|
* 1 快报
|
|
|
* 2 正式报告
|
|
|
*/
|
|
|
+ @ApiModelProperty("快报/ 正式报告 1 快报 2 正式报告")
|
|
|
@TableField("report_type")
|
|
|
public Integer ReportType;
|
|
|
/**
|
|
|
* 创建时间 格式如:“2022-06-21 13:44:33 235”
|
|
|
*/
|
|
|
+ @ApiModelProperty("创建时间 格式如:“2022-06-21 13:44:33 235”")
|
|
|
@TableField("create_time")
|
|
|
public String CreateTime;
|
|
|
|
|
|
/**
|
|
|
* 附件
|
|
|
*/
|
|
|
+ @ApiModelProperty("附件")
|
|
|
@TableField(exist = false)
|
|
|
private List<TrialCyAccessories> Accessories;
|
|
|
}
|