package com.qianwen.mdc.dto.workshop;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
import com.qianwen.mdc.dto.SectionDTO;
|
/**
|
* 车间数据传输对象
|
*/
|
public class WorkshopFullDTO implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -2006517821720524176L;
|
|
private Long id;
|
|
private String name;
|
|
private List<SectionDTO> sections;
|
|
private String sectionNames;
|
|
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 List<SectionDTO> getSections() {
|
return sections;
|
}
|
|
|
public void setSections(List<SectionDTO> sections) {
|
this.sections = sections;
|
}
|
|
|
public String getSectionNames() {
|
return sectionNames;
|
}
|
|
|
public void setSectionNames(String sectionNames) {
|
this.sectionNames = sectionNames;
|
}
|
|
}
|