IntelligentRecognition/ah-jjsp-service/.svn/pristine/1e/1e94095f3862ec79dfeac6e01db...

28 lines
668 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.sercurityControl.decision.domain.qo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
@Data
@ApiModel("无施工班组参数")
public class NoWorkTeamQo {
@NotNull(message = "类型不能为空")
@ApiModelProperty("未报计划-1 有计划未作业-2")
private Integer type;
@ApiModelProperty("查询日期")
private String queryDate;
@ApiModelProperty("建管单位")
private String buildUnit;
@ApiModelProperty("工程名称")
private String projectName;
}