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("involvedep")
|
public class InvolveDepInfo implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** department **/
|
private String department;
|
|
/** 更新人 lastmodifiedby **/
|
private String lastmodifiedby;
|
|
/** 更新时间 lastmodifieddate **/
|
private Date lastmodifieddate;
|
|
/** id id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** id id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** department **/
|
public String getDepartment() {
|
return department;
|
}
|
|
/** department **/
|
public void setDepartment(String department) {
|
this.department = department == null ? null : department.trim();
|
}
|
|
/** 更新人 lastmodifiedby **/
|
public String getLastmodifiedby() {
|
return lastmodifiedby;
|
}
|
|
/** 更新人 lastmodifiedby **/
|
public void setLastmodifiedby(String lastmodifiedby) {
|
this.lastmodifiedby = lastmodifiedby == null ? null : lastmodifiedby.trim();
|
}
|
|
/** 更新时间 lastmodifieddate **/
|
public Date getLastmodifieddate() {
|
return lastmodifieddate;
|
}
|
|
/** 更新时间 lastmodifieddate **/
|
public void setLastmodifieddate(Date lastmodifieddate) {
|
this.lastmodifieddate = lastmodifieddate;
|
}
|
}
|