39 lines
928 B
Plaintext
39 lines
928 B
Plaintext
package com.sercurityControl.decision.domain.vo;
|
||
|
||
import com.securityControl.common.core.web.page.PageDomain;
|
||
import lombok.Getter;
|
||
import lombok.Setter;
|
||
|
||
import java.io.Serializable;
|
||
|
||
@Getter
|
||
@Setter
|
||
public class QueryVo extends PageDomain implements Serializable {
|
||
private String buildOrgNo;
|
||
private String name;
|
||
private String bidNo;
|
||
private String classId;
|
||
private String bakIc;
|
||
private String peopleTypeCode;
|
||
private String projectName;
|
||
private String riskGrade;
|
||
private String teamName;
|
||
private String workManager;
|
||
private String gjType;
|
||
/**
|
||
* 0.未整改,1.已整改,2.逾期整改
|
||
*/
|
||
private String changeStatus;
|
||
private String startDate;
|
||
private String endDate;
|
||
/**
|
||
* 页面3,4,5,6,7,8
|
||
*/
|
||
private String flag;
|
||
private String sgStatus;
|
||
/**
|
||
* 是否加强考核0否;1是
|
||
*/
|
||
private String jqkh;
|
||
}
|