package com.gkhy.safePlatform.emergency.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName("emergency_plan_log")
|
public class EmergencyPlanLogInfoDO {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Long planId;
|
|
private Long userUid;
|
|
private Date startCreate;
|
|
private String remark;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getPlanId() {
|
return planId;
|
}
|
|
public void setPlanId(Long planId) {
|
this.planId = planId;
|
}
|
|
public Long getUserUid() {
|
return userUid;
|
}
|
|
public void setUserUid(Long userUid) {
|
this.userUid = userUid;
|
}
|
|
public Date getStartCreate() {
|
return startCreate;
|
}
|
|
public void setStartCreate(Date startCreate) {
|
this.startCreate = startCreate;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencyPlanLogInfoDO{" +
|
"id=" + id +
|
", planId=" + planId +
|
", userUid=" + userUid +
|
", startCreate=" + startCreate +
|
", remark='" + remark + '\'' +
|
'}';
|
}
|
}
|