| | |
| | | private Integer id; |
| | | @ApiModelProperty("母料编号") |
| | | private String type; |
| | | @ApiModelProperty("类别") |
| | | private String category; |
| | | @ApiModelProperty("子件编码") |
| | | private String subCode; |
| | | @ApiModelProperty("子件名称") |
| | |
| | | private String subModel; |
| | | @ApiModelProperty("单位") |
| | | private String unit; |
| | | @ApiModelProperty("生产商") |
| | | private String producer; |
| | | @ApiModelProperty("封装类型/材质") |
| | | private String material; |
| | | @ApiModelProperty("元件编号/料厚") |
| | | private String thickness; |
| | | @ApiModelProperty("表面处理/物料详情") |
| | | private String surfaceDetail; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("备注") |
| | | private String notes; |
| | | private String pictureUrl; |
| | |
| | | @ApiModelProperty(value = "附件锁定信息") |
| | | private List<AttachLock> attachLocks; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "是否存在附件:1存在,0无") |
| | | private int hasAttachFlag; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "附件目录下的文件列表") |
| | | private List attachFileList; |
| | | |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getCategory() { |
| | | return category; |
| | | } |
| | | |
| | | public void setCategory(String category) { |
| | | this.category = category; |
| | | } |
| | | |
| | | public String getSubCode() { |
| | |
| | | |
| | | public void setUnit(String unit) { |
| | | this.unit = unit; |
| | | } |
| | | |
| | | public String getProducer() { |
| | | return producer; |
| | | } |
| | | |
| | | public void setProducer(String producer) { |
| | | this.producer = producer; |
| | | } |
| | | |
| | | public String getMaterial() { |
| | | return material; |
| | | } |
| | | |
| | | public void setMaterial(String material) { |
| | | this.material = material; |
| | | } |
| | | |
| | | public String getThickness() { |
| | | return thickness; |
| | | } |
| | | |
| | | public void setThickness(String thickness) { |
| | | this.thickness = thickness; |
| | | } |
| | | |
| | | public String getSurfaceDetail() { |
| | | return surfaceDetail; |
| | | } |
| | | |
| | | public void setSurfaceDetail(String surfaceDetail) { |
| | | this.surfaceDetail = surfaceDetail; |
| | | } |
| | | |
| | | public String getNotes() { |
| | |
| | | public void setAttachLocks(List<AttachLock> attachLocks) { |
| | | this.attachLocks = attachLocks; |
| | | } |
| | | |
| | | public int getHasAttachFlag() { |
| | | return hasAttachFlag; |
| | | } |
| | | |
| | | public void setHasAttachFlag(int hasAttachFlag) { |
| | | this.hasAttachFlag = hasAttachFlag; |
| | | } |
| | | |
| | | public List getAttachFileList() { |
| | | return attachFileList; |
| | | } |
| | | |
| | | public void setAttachFileList(List attachFileList) { |
| | | this.attachFileList = attachFileList; |
| | | } |
| | | } |