34 lines
682 B
Plaintext
34 lines
682 B
Plaintext
|
|
package com.sercurityControl.decision.domain.qo;
|
|||
|
|
|
|||
|
|
|
|||
|
|
import com.securityControl.common.core.web.page.PageDomain;
|
|||
|
|
import io.swagger.annotations.ApiModel;
|
|||
|
|
import io.swagger.annotations.ApiModelProperty;
|
|||
|
|
import lombok.Data;
|
|||
|
|
|
|||
|
|
|
|||
|
|
@Data
|
|||
|
|
@ApiModel("新增班组列表查询参数")
|
|||
|
|
public class TeamAccessListQo extends PageDomain {
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 查询时间
|
|||
|
|
*/
|
|||
|
|
@ApiModelProperty("查询时间(yyyy-MM-dd)")
|
|||
|
|
private String queryDate;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 监管单位
|
|||
|
|
*/
|
|||
|
|
@ApiModelProperty("监管单位名称编码")
|
|||
|
|
private String buildNo;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 标段工程名称
|
|||
|
|
*/
|
|||
|
|
@ApiModelProperty("标段工程名称")
|
|||
|
|
private String projectName;
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|