123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 获取商品结算价
- */
- public class A_C00023 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String type;//类型(1-充值)
- /**
- *类型(1-充值)
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *类型(1-充值)
- */
- public String getType() {
- return this.type;
- }
- String count;//商品数量
- /**
- *商品数量
- */
- public void setCount(String count) {
- this.count=count;
- }
- /**
- *商品数量
- */
- public String getCount() {
- return this.count;
- }
- String goodsCode;//商品编码
- /**
- *商品编码
- */
- public void setGoodsCode(String goodsCode) {
- this.goodsCode=goodsCode;
- }
- /**
- *商品编码
- */
- public String getGoodsCode() {
- return this.goodsCode;
- }
- }
|