yanghb
2024-12-17 1287337fd0b0c156ec79712f9a600ebeffefe3a6
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
package com.zzg.system.domain.bo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zzg.common.core.page.PageDomain;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.sql.Timestamp;
import java.time.LocalDate;
import java.util.Date;
 
@Data
public class StateApplyRecordPageBO extends PageDomain {
    @ApiModelProperty(value = "项目名称", example = "50000")
    private String projectName;
 
    @ApiModelProperty(value = "查询申请开始时间", example = "50000")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate applyStartTime;
 
    @ApiModelProperty(value = "查询申请结束时间", example = "50000")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate  applyEndTime;
 
    @ApiModelProperty(value = "申请状态", example = "50000")
    private Integer applyStatus;
    @ApiModelProperty(value = "申请人", example = "50000")
    private String applyUser;
    @ApiModelProperty(value = "申请部门", example = "50000")
    private String applyDepartment;
    private Integer applyType;
    private String projectId;
 
}