IntelligentRecognition/ah-jjsp-service/.svn/pristine/87/870464ed3bc7590c6f3d2c3496e...

106 lines
1.7 KiB
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;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.io.Serializable;
@Getter
@Setter
@NoArgsConstructor
public class TeamManage implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 工程名称
*/
private String projectName;
/**
* 风险等级
*/
private String riskGrade;
/**
* 班组名称
*/
private String teamName;
/**
* 班组长名称
*/
private String bzName;
/**
* 班组长电话
*/
private String bzPhone;
/**
* 0未施工 1施工 2暂停
*/
private String status;
/**
* 今日人数
*/
private String dayNum;
/**
* 昨日数量
*/
private String yeNum;
/**
* 星级
*/
private String zhpj;
/**
* 违章数量
*/
private String vzNum;
private String classId;
/**
* 作业内容
*/
private String jobContent;
/**
* 风险控制因素
*/
private String fxkzys;
/**
* 补充措施
*/
private String bccs;
/**
* 工程进度
*/
private String gcjd;
/**
* 作业时间
*/
private String workTime;
/**
* 事故内容
*/
private String sgContent;
/**
* 事故状态0未解决1 已解决
*/
private String sgStatus;
/**
* 事故等级
*/
private String sgLevel;
/**
* 是否加强考核0否;1是
*/
private String jqkh;
/**
* 防盗措施
*/
private String fdcs;
/**
* 新增安全器具
*/
private String aqqj;
/**
* 安全措施
*/
private String aqcs;
}