|
@@ -6,6 +6,7 @@ import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
import com.ym.mec.biz.dal.enums.GradeTypeEnum;
|
|
@@ -15,11 +16,9 @@ import com.ym.mec.common.entity.BaseEntity;
|
|
|
/**
|
|
|
* 对应数据库表(organization):
|
|
|
*/
|
|
|
+@Data
|
|
|
public class Organization extends BaseEntity {
|
|
|
|
|
|
- /**
|
|
|
- *
|
|
|
- */
|
|
|
private static final long serialVersionUID = -8979746516597046410L;
|
|
|
|
|
|
/** */
|
|
@@ -69,159 +68,16 @@ public class Organization extends BaseEntity {
|
|
|
@ApiModelProperty(value = "地址",required = false)
|
|
|
private String address;
|
|
|
|
|
|
+ @ApiModelProperty(value = "可用教材编号,多个逗号分割",required = false)
|
|
|
+ private String teachingMaterialId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "学年制",required = false)
|
|
|
private GradeTypeEnum gradeType;
|
|
|
|
|
|
@ApiModelProperty(value = "子节点列表",required = false)
|
|
|
private List<Organization> organizations;
|
|
|
-
|
|
|
- public String getAreaName() {
|
|
|
- return areaName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAreaName(String areaName) {
|
|
|
- this.areaName = areaName;
|
|
|
- }
|
|
|
-
|
|
|
- public List<Organization> getOrganizations() {
|
|
|
- return organizations;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrganizations(List<Organization> organizations) {
|
|
|
- this.organizations = organizations;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Integer id){
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getId(){
|
|
|
- return this.id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name){
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName(){
|
|
|
- return this.name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(java.util.Date createTime){
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getCreateTime(){
|
|
|
- return this.createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTime(java.util.Date updateTime){
|
|
|
- this.updateTime = updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getUpdateTime(){
|
|
|
- return this.updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public YesOrNoEnum getDelFlag() {
|
|
|
- return delFlag;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDelFlag(YesOrNoEnum delFlag) {
|
|
|
- this.delFlag = delFlag;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getAreaId() {
|
|
|
- return areaId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAreaId(Integer areaId) {
|
|
|
- this.areaId = areaId;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getRegisterDate() {
|
|
|
- return registerDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRegisterDate(Date registerDate) {
|
|
|
- this.registerDate = registerDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLinkman() {
|
|
|
- return linkman;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLinkman(String linkman) {
|
|
|
- this.linkman = linkman;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMobile() {
|
|
|
- return mobile;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMobile(String mobile) {
|
|
|
- this.mobile = mobile;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAddress() {
|
|
|
- return address;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAddress(String address) {
|
|
|
- this.address = address;
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return ToStringBuilder.reflectionToString(this);
|
|
|
}
|
|
|
-
|
|
|
- public GradeTypeEnum getGradeType() {
|
|
|
- return gradeType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGradeType(GradeTypeEnum gradeType) {
|
|
|
- this.gradeType = gradeType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCorporateName() {
|
|
|
- return corporateName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorporateName(String corporateName) {
|
|
|
- this.corporateName = corporateName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCorporateCode() {
|
|
|
- return corporateCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorporateCode(String corporateCode) {
|
|
|
- this.corporateCode = corporateCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCorporateSeal() {
|
|
|
- return corporateSeal;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorporateSeal(String corporateSeal) {
|
|
|
- this.corporateSeal = corporateSeal;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCorporateFinancialSeal() {
|
|
|
- return corporateFinancialSeal;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorporateFinancialSeal(String corporateFinancialSeal) {
|
|
|
- this.corporateFinancialSeal = corporateFinancialSeal;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getMaxMusicalInstrumentsProfits() {
|
|
|
- return maxMusicalInstrumentsProfits;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMaxMusicalInstrumentsProfits(BigDecimal maxMusicalInstrumentsProfits) {
|
|
|
- this.maxMusicalInstrumentsProfits = maxMusicalInstrumentsProfits;
|
|
|
- }
|
|
|
-
|
|
|
}
|