package com.gkhy.safePlatform.account.entity.schedule;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.time.LocalDate;
|
import java.time.LocalDateTime;
|
import java.util.Date;
|
|
/**
|
* @Description: 班组
|
*/
|
@TableName("schedule_group")
|
public class GroupInfo implements Serializable {
|
|
private static final long serialVersionUID = -3137958606872332531L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private String name;
|
|
private String info;
|
|
private Byte status;
|
|
private Date gmtCreate;
|
|
private Date gmtModified;
|
|
private Long createUid;
|
|
private Long editUid;
|
|
private String createBy;
|
|
private String editBy;
|
|
private Long groupStrategyId;
|
|
private Long depId;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getInfo() {
|
return info;
|
}
|
|
public void setInfo(String info) {
|
this.info = info;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Date getGmtModified() {
|
return gmtModified;
|
}
|
|
public void setGmtModified(Date gmtModified) {
|
this.gmtModified = gmtModified;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public Long getEditUid() {
|
return editUid;
|
}
|
|
public void setEditUid(Long editUid) {
|
this.editUid = editUid;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public String getEditBy() {
|
return editBy;
|
}
|
|
public void setEditBy(String editBy) {
|
this.editBy = editBy;
|
}
|
|
public Long getGroupStrategyId() {
|
return groupStrategyId;
|
}
|
|
public void setGroupStrategyId(Long groupStrategyId) {
|
this.groupStrategyId = groupStrategyId;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
}
|