51 lines
1.7 KiB
Java
51 lines
1.7 KiB
Java
|
package com.changhu.pojo.dto;
|
||
|
|
||
|
import com.changhu.common.db.enums.IsOrNot;
|
||
|
import com.changhu.common.db.enums.ServiceProjectTwoType;
|
||
|
import com.changhu.common.db.enums.ServiceProjectType;
|
||
|
import com.changhu.module.management.pojo.model.LegalPersonInfo;
|
||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* @author 20252
|
||
|
* @createTime 2024/11/18 上午10:32
|
||
|
* @desc SecurityUnitUseStatisticsDTO...
|
||
|
*/
|
||
|
@Data
|
||
|
public class SecurityUnitUseStatisticsDTO {
|
||
|
@Schema(description = "服务项目id")
|
||
|
private Long serviceProjectId;
|
||
|
@Schema(description = "公安单位名称")
|
||
|
private String policeUnitName;
|
||
|
@Schema(description = "保安单位名称")
|
||
|
private String securityUnitName;
|
||
|
@Schema(description = "服务项目名称")
|
||
|
private String serviceProjectName;
|
||
|
@Schema(description = "保安服务类别")
|
||
|
private ServiceProjectType type;
|
||
|
@Schema(description = "二级类型")
|
||
|
private ServiceProjectTwoType twoType;
|
||
|
@Schema(description = "外包公司名称")
|
||
|
private String outsourceName;
|
||
|
|
||
|
@Schema(description = "保安人员总数")
|
||
|
private Integer securityUserTotal;
|
||
|
@Schema(description = "持证保安数量")
|
||
|
private Integer haveCardSecurityUserCount;
|
||
|
|
||
|
@Schema(description = "是否备案")
|
||
|
private IsOrNot isFiling;
|
||
|
@Schema(description = "证件号(保安服务许可证/备案证)")
|
||
|
private String idNumber;
|
||
|
|
||
|
@Schema(description = "保安单位法人信息")
|
||
|
private LegalPersonInfo securityUnitLegalPersonInfo;
|
||
|
|
||
|
@Schema(description = "项目经理")
|
||
|
private String serviceProjectManager;
|
||
|
@Schema(description = "项目经理联系方式")
|
||
|
private String serviceProjectManagerTelephone;
|
||
|
|
||
|
}
|