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 java.io.Serializable; import com.yuanchu.mom.annotation.ValueTableShow; import com.yuanchu.mom.common.OrderBy; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; /** *

* 样品接收总表 *

* * @author * @since 2024-12-12 05:02:58 */ @Getter @Setter @TableName("cnas_process_total_sample") @ApiModel(value = "ProcessTotalSample对象", description = "样品接收总表") public class ProcessTotalSample extends OrderBy implements Serializable { @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty("审核人") private Integer examineUser; @ApiModelProperty("审核结果") private String examineState; @ApiModelProperty("审核人电子签名url") private String examineUrl; @ValueTableShow(value = 4, name = "审核人") @TableField(select = false, exist = false) private String examineUserName; @ApiModelProperty("批准人") private Integer ratifyUser; @ApiModelProperty("批准结果") private String ratifyState; @ApiModelProperty("批准人电子签名url") private String ratifyUrl; @ValueTableShow(value = 5, name = "批准人") @TableField(select = false, exist = false) private String ratifyUserName; @ApiModelProperty("提交人") private Integer submitUser; @ValueTableShow(value = 3, name = "提交人") @TableField(select = false, exist = false) private String submitUserName; @ApiModelProperty("提交结果") private String submitState; @ApiModelProperty("提交人电子签名url") private String submitUrl; @ApiModelProperty("总数量") @ValueTableShow(2) private Integer totalNum; @ApiModelProperty("月份") @ValueTableShow(1) private String month; @ApiModelProperty("生成申请表的路径") private String url; }