D_C00023.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 D_C00023 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String goodsCode;//商品编码
  13. /**
  14. *商品编码
  15. */
  16. public void setGoodsCode(String goodsCode) {
  17. this.goodsCode=goodsCode;
  18. }
  19. /**
  20. *商品编码
  21. */
  22. public String getGoodsCode() {
  23. return this.goodsCode;
  24. }
  25. String price;//价格
  26. /**
  27. *价格
  28. */
  29. public void setPrice(String price) {
  30. this.price=price;
  31. }
  32. /**
  33. *价格
  34. */
  35. public String getPrice() {
  36. return this.price;
  37. }
  38. String salePrice;//销售价格
  39. /**
  40. *销售价格
  41. */
  42. public void setSalePrice(String salePrice) {
  43. this.salePrice=salePrice;
  44. }
  45. /**
  46. *销售价格
  47. */
  48. public String getSalePrice() {
  49. return this.salePrice;
  50. }
  51. String returnGoods;//购买的商品数量
  52. /**
  53. *购买的商品数量
  54. */
  55. public void setReturnGoods(String returnGoods) {
  56. this.returnGoods=returnGoods;
  57. }
  58. /**
  59. *购买的商品数量
  60. */
  61. public String getReturnGoods() {
  62. return this.returnGoods;
  63. }
  64. String isDiscount;//是否有折扣(1-折扣)
  65. /**
  66. *是否有折扣(1-折扣)
  67. */
  68. public void setIsDiscount(String isDiscount) {
  69. this.isDiscount=isDiscount;
  70. }
  71. /**
  72. *是否有折扣(1-折扣)
  73. */
  74. public String getIsDiscount() {
  75. return this.isDiscount;
  76. }
  77. }