package com.ruoyi.system.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("enterprise_manage_technology_type")
|
public class EnterpriseManageTechnologyType implements Serializable {
|
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 工艺类型
|
*/
|
private String technologyName;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 创建人
|
*/
|
private String createBy;
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
/**
|
* 更新人
|
*/
|
private String updateBy;
|
|
/**
|
* 是否删除
|
*/
|
private Byte isDelete;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getTechnologyName() {
|
return technologyName;
|
}
|
|
public void setTechnologyName(String technologyName) {
|
this.technologyName = technologyName;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy;
|
}
|
|
public Byte getIsDelete() {
|
return isDelete;
|
}
|
|
public void setIsDelete(Byte isDelete) {
|
this.isDelete = isDelete;
|
}
|
}
|