| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package QCM.COMMUNAL.VO;
- import java.io.Serializable;
- import java.util.Date;
- public class QcmJudgeGpInfo implements Serializable{
- private String gp_id;
- private String material_no;
- private String steel_name;
- private String thick;
- private String width;
- private String length;
- private String orderno;
- private String gp_name;
- private Date gp_time;
- private String old_orderno;
- private String weight;
- private String prod_line;
- private String gp_steel_name;
- private String gp_type;
-
-
- public String getGp_type() {
- return gp_type;
- }
- public void setGp_type(String gp_type) {
- this.gp_type = gp_type;
- }
- public String getGp_id() {
- return gp_id;
- }
- public void setGp_id(String gp_id) {
- this.gp_id = gp_id;
- }
- public String getMaterial_no() {
- return material_no;
- }
- public void setMaterial_no(String material_no) {
- this.material_no = material_no;
- }
- public String getSteel_name() {
- return steel_name;
- }
- public void setSteel_name(String steel_name) {
- this.steel_name = steel_name;
- }
- public String getThick() {
- return thick;
- }
- public void setThick(String thick) {
- this.thick = thick;
- }
- public String getWidth() {
- return width;
- }
- public void setWidth(String width) {
- this.width = width;
- }
- public String getLength() {
- return length;
- }
- public void setLength(String length) {
- this.length = length;
- }
- public String getOrderno() {
- return orderno;
- }
- public void setOrderno(String orderno) {
- this.orderno = orderno;
- }
- public String getGp_name() {
- return gp_name;
- }
- public void setGp_name(String gp_name) {
- this.gp_name = gp_name;
- }
- public Date getGp_time() {
- return gp_time;
- }
- public void setGp_time(Date gp_time) {
- this.gp_time = gp_time;
- }
- public String getOld_orderno() {
- return old_orderno;
- }
- public void setOld_orderno(String old_orderno) {
- this.old_orderno = old_orderno;
- }
- public String getWeight() {
- return weight;
- }
- public void setWeight(String weight) {
- this.weight = weight;
- }
- public String getProd_line() {
- return prod_line;
- }
- public void setProd_line(String prod_line) {
- this.prod_line = prod_line;
- }
- public String getGp_steel_name() {
- return gp_steel_name;
- }
- public void setGp_steel_name(String gp_steel_name) {
- this.gp_steel_name = gp_steel_name;
- }
-
-
- }
|