yangys
2025-08-22 43b6b4b905fb272e2d7d9c0738610c4204c958ce
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
package org.springblade.mdm.program.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import org.springblade.mdm.commons.vo.BaseVO;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;
 
 
@Schema(description = "首页树查询参数对象")
@Setter
@Getter
public class NcNodeQueryVO {
    @Schema(description = "程序状态隔")
    private List<String> programStatus;
    @Schema(description = "程序状态(试切1;固化2;偏离3),多选逗号分隔")
    private String status;
    @Schema(description = "零组件号")
    private String drawingNo;
 
    //@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @Schema(description = "起始时间")
    private LocalDate createTimeBegin;
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @Schema(description = "结束时间")
    private LocalDate createTimeEnd;
 
}