嗨森逛服务
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.
hai-server/hai-service/src/main/java/com/hai/model/TyOrderGorpModel.java

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;
}
}