123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 获取商品列表
- */
- public class A_C00022 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String type;//类型(1-充值,2-增加子账户上限 4-购买资源)
- /**
- *类型(1-充值,2-增加子账户上限 4-购买资源)
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *类型(1-充值,2-增加子账户上限 4-购买资源)
- */
- public String getType() {
- return this.type;
- }
- String subType;//子类型
- /**
- *子类型
- */
- public void setSubType(String subType) {
- this.subType=subType;
- }
- /**
- *子类型
- */
- public String getSubType() {
- return this.subType;
- }
- String saleUnit;//出售方式(0-整卖 1-零卖)
- /**
- *出售方式(0-整卖 1-零卖)
- */
- public void setSaleUnit(String saleUnit) {
- this.saleUnit=saleUnit;
- }
- /**
- *出售方式(0-整卖 1-零卖)
- */
- public String getSaleUnit() {
- return this.saleUnit;
- }
- }
|