无关风月
2 天以前 ce0651907f18a57dae80065e01589e975530f53e
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
package com.ruoyi.system.model;
 
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 com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 实验调度参与人员
 * </p>
 *
 * @author xiaochen
 * @since 2025-04-08
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_experiment_dispatch_participants")
@ApiModel(value="TExperimentDispatchParticipants对象", description="实验调度参与人员")
public class TExperimentDispatchParticipants implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private String id;
 
    @ApiModelProperty(value = "实验调度id")
    @TableField("dispatch_id")
    private String dispatchId;
 
    @ApiModelProperty(value = "用户id")
    @TableField("user_id")
    private Long userId;
 
    @ApiModelProperty(value = "角色类型 3=工艺工程师 4=化验师 5=实验员")
    @TableField("role_type")
    private Integer roleType;
 
    @ApiModelProperty(value = "状态 1=待确认 2=已确认")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "签字")
    @TableField("confirm_sign")
    private String confirmSign;
 
    @ApiModelProperty(value = "签字时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("sign_time")
    private LocalDateTime signTime;
 
    @ApiModelProperty(value = "用户姓名")
    @TableField(exist = false)
    private String nickName;
 
    @ApiModelProperty(value = "用户头像")
    @TableField(exist = false)
    private String avatar;
}