package com.ruoyi.process.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; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; import java.io.Serializable; /** *
* 样品接收总表 *
* * @author 芯导软件(江苏)有限公司 * @since 2024-12-12 05:02:58 */ @Getter @Setter @TableName("cnas_process_total_sample") @ApiModel(value = "ProcessTotalSample对象", description = "样品接收总表") public class ProcessTotalSample implements Serializable { @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty("审核人") private Integer examineUser; @ApiModelProperty("审核结果") private String examineState; @ApiModelProperty("审核人电子签名url") private String examineUrl; @TableField(select = false, exist = false) private String examineUserName; @ApiModelProperty("批准人") private Integer ratifyUser; @ApiModelProperty("批准结果") private String ratifyState; @ApiModelProperty("批准人电子签名url") private String ratifyUrl; @TableField(select = false, exist = false) private String ratifyUserName; @ApiModelProperty("提交人") private Integer submitUser; @TableField(select = false, exist = false) private String submitUserName; @ApiModelProperty("提交结果") private String submitState; @ApiModelProperty("提交人电子签名url") private String submitUrl; @ApiModelProperty("总数量") private Integer totalNum; @ApiModelProperty("月份") private String month; @ApiModelProperty("生成申请表的路径") private String url; }