package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("safety_self_inspection_item_deduction")
|
public class SafetySelfInspectionItemDeduction implements Serializable {
|
|
private final static long serialVersionUID = 1L;
|
|
/** 自查清单记录的检查项id safety_self_inspection_item_id **/
|
private Long safetySelfInspectionItemId;
|
|
/** 扣分项id safety_inspection_item_deduction_id **/
|
private Long safetyInspectionItemDeductionId;
|
|
/** 扣分数 point **/
|
private Integer point;
|
|
/** 备注 remark **/
|
private String remark;
|
|
/** 名称 name **/
|
@TableField(exist = false)
|
private String name;
|
|
|
/** 主键id id **/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 有效标识 valid_flag **/
|
private Boolean validFlag;
|
|
/** 创建时间 create_time **/
|
private Date createTime;
|
|
/** 创建人 create_by **/
|
private String createBy;
|
|
/** 最新更新时间 update_time **/
|
private Date updateTime;
|
|
/** 最后更新人 update_by **/
|
private String updateBy;
|
|
|
/** 主键id id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** 主键id id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 有效标识 valid_flag **/
|
public Boolean getValidFlag() {
|
return validFlag;
|
}
|
|
/** 有效标识 valid_flag **/
|
public void setValidFlag(Boolean validFlag) {
|
this.validFlag = validFlag;
|
}
|
|
/** 创建时间 create_time **/
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
/** 创建时间 create_time **/
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
/** 创建人 create_by **/
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
/** 创建人 create_by **/
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy == null ? null : createBy.trim();
|
}
|
|
/** 最新更新时间 update_time **/
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
/** 最新更新时间 update_time **/
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
/** 最后更新人 update_by **/
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
/** 最后更新人 update_by **/
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy == null ? null : updateBy.trim();
|
}
|
|
public Long getSafetySelfInspectionItemId() {
|
return safetySelfInspectionItemId;
|
}
|
|
public void setSafetySelfInspectionItemId(Long safetySelfInspectionItemId) {
|
this.safetySelfInspectionItemId = safetySelfInspectionItemId;
|
}
|
|
public Long getSafetyInspectionItemDeductionId() {
|
return safetyInspectionItemDeductionId;
|
}
|
|
public void setSafetyInspectionItemDeductionId(Long safetyInspectionItemDeductionId) {
|
this.safetyInspectionItemDeductionId = safetyInspectionItemDeductionId;
|
}
|
|
public Integer getPoint() {
|
return point;
|
}
|
|
public void setPoint(Integer point) {
|
this.point = point;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
}
|