86 lines
1.5 KiB
Plaintext
86 lines
1.5 KiB
Plaintext
package com.sercurityControl.decision.domain;
|
||
|
||
import java.io.Serializable;
|
||
import lombok.Data;
|
||
import lombok.EqualsAndHashCode;
|
||
import com.securityControl.common.core.web.domain.BaseEntity;
|
||
|
||
/**
|
||
* 周计划表(JjWeekPlan)实体类
|
||
*
|
||
* @author makejava
|
||
* @since 2022-12-06 14:31:54
|
||
*/
|
||
@Data
|
||
@EqualsAndHashCode(callSuper = true)
|
||
public class JjWeekPlan extends BaseEntity implements Serializable {
|
||
private static final long serialVersionUID = -38737297062784091L;
|
||
/**
|
||
* ID自增,无实际意义
|
||
*/
|
||
private String wkId;
|
||
/**
|
||
* 周风险ID
|
||
*/
|
||
private String weekId;
|
||
/**
|
||
* 周开始时间
|
||
*/
|
||
private String startDate;
|
||
/**
|
||
* 周结束时间
|
||
*/
|
||
private String endDate;
|
||
/**
|
||
* 班组名称
|
||
*/
|
||
private String teamName;
|
||
/**
|
||
* 建管单位名称
|
||
*/
|
||
private String buildUnit;
|
||
/**
|
||
* 风险等级
|
||
*/
|
||
private Integer riskLevel;
|
||
/**
|
||
* 作业内容
|
||
*/
|
||
private String workContent;
|
||
/**
|
||
* 工程名称
|
||
*/
|
||
private String projectName;
|
||
/**
|
||
* 作业类型
|
||
*/
|
||
private Integer workType;
|
||
/**
|
||
* 作业工序
|
||
*/
|
||
private String workGx;
|
||
|
||
private String singleName;
|
||
|
||
private String singleNo;
|
||
|
||
private String bidName;
|
||
|
||
private String bidNo;
|
||
/**
|
||
* 作业名称
|
||
*/
|
||
private String workName;
|
||
/**
|
||
* 管控措施
|
||
*/
|
||
private String gkcs;
|
||
/**
|
||
* 补充措施
|
||
*/
|
||
private String bccs;
|
||
|
||
|
||
}
|
||
|