无关风月
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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 com.ruoyi.common.core.domain.BaseModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.time.LocalDateTime;
 
/**
 * <p>
 * 实验调度管理
 * </p>
 *
 * @author xiaochen
 * @since 2025-04-08
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_experiment_dispatch")
@ApiModel(value="TExperimentDispatch对象", description="实验调度管理")
public class TExperimentDispatch  extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private String id;
 
    @ApiModelProperty(value = "项目课题方案id")
    @TableField("proposal_id")
    private String proposalId;
 
    @ApiModelProperty(value = "实验日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("experiment_date")
    private LocalDateTime experimentDate;
 
    @ApiModelProperty(value = "实验名称")
    @TableField("experiment_name")
    private String experimentName;
 
    @ApiModelProperty(value = "实验编号")
    @TableField("experiment_code")
    private String experimentCode;
 
    @ApiModelProperty(value = "实验开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("experiment_start_time")
    private LocalDateTime experimentStartTime;
 
    @ApiModelProperty(value = "实验结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("experiment_end_time")
    private LocalDateTime experimentEndTime;
 
    @ApiModelProperty(value = "关键节点")
    @TableField("key_nodes")
    private String keyNodes;
 
    @ApiModelProperty(value = "状态 -1=草稿箱 1=待确认 2=已确认 3=已封存")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "课题方案名称")
    @TableField(exist = false)
    private String projectName;
    @ApiModelProperty(value = "课题方案编号")
    @TableField(exist = false)
    private String projectCode;
 
    @ApiModelProperty(value = "参与人员名称拼接")
    @TableField(exist = false)
    private String participantsName;
 
}