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;
|
|
}
|