| | |
| | | package com.ruoyi.system.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | 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.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | |
| | | private String proposalId; |
| | | |
| | | @ApiModelProperty(value = "实验日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("experiment_date") |
| | | private LocalDateTime experimentDate; |
| | | |
| | |
| | | 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; |
| | | |
| | |
| | | @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; |
| | | |
| | | } |