|
|
@ -2,9 +2,9 @@ package com.ruoyi.erp.domain; |
|
|
|
|
|
|
|
import com.ruoyi.common.annotation.Excel; |
|
|
|
import com.ruoyi.common.core.domain.BaseEntity; |
|
|
|
import com.ruoyi.system.domain.SysProductItem; |
|
|
|
import com.ruoyi.system.domain.SysTechnicalTeam; |
|
|
|
import org.apache.commons.lang.builder.ToStringBuilder; |
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
@ -117,7 +117,7 @@ public class ErpMaterial extends BaseEntity |
|
|
|
/** 供应商名称*/ |
|
|
|
private String supplierName; |
|
|
|
|
|
|
|
private List<SysProductItem> sysProductItems; |
|
|
|
private List<SysTechnicalTeam> technicalTeams; |
|
|
|
public void setId(Long id) |
|
|
|
{ |
|
|
|
this.id = id; |
|
|
@ -309,12 +309,12 @@ public class ErpMaterial extends BaseEntity |
|
|
|
this.productItem = productItem; |
|
|
|
} |
|
|
|
|
|
|
|
public List<SysProductItem> getSysProductItems() { |
|
|
|
return sysProductItems; |
|
|
|
public List<SysTechnicalTeam> getSysTechnicalTeams() { |
|
|
|
return technicalTeams; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSysProductItems(List<SysProductItem> sysProductItems) { |
|
|
|
this.sysProductItems = sysProductItems; |
|
|
|
public void setSysTechnicalTeams(List<SysTechnicalTeam> technicalTeams) { |
|
|
|
this.technicalTeams = technicalTeams; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBomNo() { |
|
|
@ -442,7 +442,7 @@ public class ErpMaterial extends BaseEntity |
|
|
|
.append("photoUrl", getPhotoUrl()) |
|
|
|
.append("fileIdStr", getFileIdStr()) |
|
|
|
.append("removeFileIdStr", getRemoveFileIdStr()) |
|
|
|
.append("sysProductItems", getSysProductItems()) |
|
|
|
.append("sysTechnicalTeams", getSysTechnicalTeams()) |
|
|
|
.append("itemName", getItemName()) |
|
|
|
.append("supplierId",getSupplierId()) |
|
|
|
.append("supplierName",getSupplierName()) |
|
|
|