段飞宇
1 year ago
3 changed files with 71 additions and 22 deletions
@ -0,0 +1,69 @@ |
|||||||
|
package com.hnac.hzims.operational.main.vo; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
|
||||||
|
import java.time.YearMonth; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author WL |
||||||
|
* @Version v1.0 |
||||||
|
* @Serial 1.0 |
||||||
|
* @Date 2023/6/12 15:59 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class OperPhenomenonVo { |
||||||
|
|
||||||
|
/** |
||||||
|
* 发现时间 |
||||||
|
*/ |
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "发现时间") |
||||||
|
private Date findTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 甄别状态:已甄别 1 和未甄别 0 ,默认0 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "甄别状态:已甄别 1 和未甄别 0 ,默认0") |
||||||
|
private String discriminateStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 计划开始时间 |
||||||
|
*/ |
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "计划开始时间") |
||||||
|
private Date planStartTime; |
||||||
|
/** |
||||||
|
* 计划结束时间 |
||||||
|
*/ |
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "计划结束时间") |
||||||
|
private Date planEndTime; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "年月") |
||||||
|
@TableField(exist = false) |
||||||
|
private YearMonth yearMonth; |
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "年月") |
||||||
|
private String areaId; |
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "是否为缺陷 直接传0") |
||||||
|
@TableField(exist = false) |
||||||
|
private Integer defect; |
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "已定论1") |
||||||
|
private Integer conclusionStatusNum; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue