A_C00023.java 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 获取商品结算价
  9. */
  10. public class A_C00023 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String type;//类型(1-充值)
  13. /**
  14. *类型(1-充值)
  15. */
  16. public void setType(String type) {
  17. this.type=type;
  18. }
  19. /**
  20. *类型(1-充值)
  21. */
  22. public String getType() {
  23. return this.type;
  24. }
  25. String count;//商品数量
  26. /**
  27. *商品数量
  28. */
  29. public void setCount(String count) {
  30. this.count=count;
  31. }
  32. /**
  33. *商品数量
  34. */
  35. public String getCount() {
  36. return this.count;
  37. }
  38. String goodsCode;//商品编码
  39. /**
  40. *商品编码
  41. */
  42. public void setGoodsCode(String goodsCode) {
  43. this.goodsCode=goodsCode;
  44. }
  45. /**
  46. *商品编码
  47. */
  48. public String getGoodsCode() {
  49. return this.goodsCode;
  50. }
  51. }