You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
408 B
26 lines
408 B
package com.hai.model;
|
|
|
|
public class TyOrderGorpModel {
|
|
|
|
// 数量
|
|
private Integer value;
|
|
|
|
// 类型
|
|
private String name;
|
|
|
|
public Integer getValue() {
|
|
return value;
|
|
}
|
|
|
|
public void setValue(Integer value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
}
|
|
|