zss
6 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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;
 
/**
 * <p>
 * 样品接收总表
 * </p>
 *
 * @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;
}