已有开发项目的熟悉过程
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.cbs.company.domain;
  2. import java.util.Date;
  3. public class Bag {
  4. private int id;
  5. private String type;
  6. private String texture;
  7. private String gsprice;
  8. private String bagprice;
  9. private String gs;
  10. private String portname;
  11. private int kc;
  12. private int kcyj;
  13. private String startdate;
  14. private String enddate;
  15. private int supplysum;
  16. public int getSupplysum() {
  17. return supplysum;
  18. }
  19. public void setSupplysum(int supplysum) {
  20. this.supplysum = supplysum;
  21. }
  22. public String getStartdate() {
  23. return startdate;
  24. }
  25. public void setStartdate(String startdate) {
  26. this.startdate = startdate;
  27. }
  28. public String getEnddate() {
  29. return enddate;
  30. }
  31. public void setEnddate(String enddate) {
  32. this.enddate = enddate;
  33. }
  34. public int getKcyj() {
  35. return kcyj;
  36. }
  37. public void setKcyj(int kcyj) {
  38. this.kcyj = kcyj;
  39. }
  40. public int getId() {
  41. return id;
  42. }
  43. public void setId(int id) {
  44. this.id = id;
  45. }
  46. public String getType() {
  47. return type;
  48. }
  49. public void setType(String type) {
  50. this.type = type;
  51. }
  52. public String getTexture() {
  53. return texture;
  54. }
  55. public int getKc() {
  56. return kc;
  57. }
  58. public void setKc(int kc) {
  59. this.kc = kc;
  60. }
  61. public void setTexture(String texture) {
  62. this.texture = texture;
  63. }
  64. public String getGsprice() {
  65. return gsprice;
  66. }
  67. public void setGsprice(String gsprice) {
  68. this.gsprice = gsprice;
  69. }
  70. public String getBagprice() {
  71. return bagprice;
  72. }
  73. public void setBagprice(String bagprice) {
  74. this.bagprice = bagprice;
  75. }
  76. public String getGs() {
  77. return gs;
  78. }
  79. public void setGs(String gs) {
  80. this.gs = gs;
  81. }
  82. public String getPortname() {
  83. return portname;
  84. }
  85. public void setPortname(String portname) {
  86. this.portname = portname;
  87. }
  88. }