package com.lf.server.entity.md;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.lf.server.entity.all.BaseEntity;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
import java.time.LocalDate;
|
|
/**
|
* Mdcsingleproject
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("md.md_c_single_project")
|
@EqualsAndHashCode(callSuper = false)
|
public class MdcsingleprojectEntity extends BaseEntity {
|
private static final long serialVersionUID = 512924120534641728L;
|
|
private String taskcode;
|
|
private String taskname;
|
|
private String projectcode;
|
|
private String projectname;
|
|
private String taskstyle;
|
|
private String taskdescribe;
|
|
private String taskregion;
|
|
private String remarks;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
public MdcsingleprojectEntity() {
|
}
|
|
public String getTaskcode() {
|
return taskcode;
|
}
|
|
public void setTaskcode(String taskcode) {
|
this.taskcode = taskcode;
|
}
|
|
public String getTaskname() {
|
return taskname;
|
}
|
|
public void setTaskname(String taskname) {
|
this.taskname = taskname;
|
}
|
|
public String getProjectcode() {
|
return projectcode;
|
}
|
|
public void setProjectcode(String projectcode) {
|
this.projectcode = projectcode;
|
}
|
|
public String getProjectname() {
|
return projectname;
|
}
|
|
public void setProjectname(String projectname) {
|
this.projectname = projectname;
|
}
|
|
public String getTaskstyle() {
|
return taskstyle;
|
}
|
|
public void setTaskstyle(String taskstyle) {
|
this.taskstyle = taskstyle;
|
}
|
|
public String getTaskdescribe() {
|
return taskdescribe;
|
}
|
|
public void setTaskdescribe(String taskdescribe) {
|
this.taskdescribe = taskdescribe;
|
}
|
|
public String getTaskregion() {
|
return taskregion;
|
}
|
|
public void setTaskregion(String taskregion) {
|
this.taskregion = taskregion;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getBelongsid() {
|
return belongsid;
|
}
|
|
public void setBelongsid(String belongsid) {
|
this.belongsid = belongsid;
|
}
|
|
public String getDatastatus() {
|
return datastatus;
|
}
|
|
public void setDatastatus(String datastatus) {
|
this.datastatus = datastatus;
|
}
|
}
|