You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
618 B
Java
18 lines
618 B
Java
package com.tml.materialPeptide;
|
|
|
|
public class PartAttrDTO {
|
|
private String partId;
|
|
private String specification; // 规格型号
|
|
private String brand; // 品牌
|
|
|
|
// getters and setters
|
|
public String getPartId() { return partId; }
|
|
public void setPartId(String partId) { this.partId = partId; }
|
|
|
|
public String getSpecification() { return specification; }
|
|
public void setSpecification(String specification) { this.specification = specification; }
|
|
|
|
public String getBrand() { return brand; }
|
|
public void setBrand(String brand) { this.brand = brand; }
|
|
}
|