A_HM0006.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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_HM0006 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String shopcode;//商品编码
  13. /**
  14. *商品编码
  15. */
  16. public void setShopcode(String shopcode) {
  17. this.shopcode=shopcode;
  18. }
  19. /**
  20. *商品编码
  21. */
  22. public String getShopcode() {
  23. return this.shopcode;
  24. }
  25. String shopname;//商品名称
  26. /**
  27. *商品名称
  28. */
  29. public void setShopname(String shopname) {
  30. this.shopname=shopname;
  31. }
  32. /**
  33. *商品名称
  34. */
  35. public String getShopname() {
  36. return this.shopname;
  37. }
  38. String filename1;//文件名称
  39. /**
  40. *文件名称
  41. */
  42. public void setFilename1(String filename1) {
  43. this.filename1=filename1;
  44. }
  45. /**
  46. *文件名称
  47. */
  48. public String getFilename1() {
  49. return this.filename1;
  50. }
  51. String filename2;//文件名称
  52. /**
  53. *文件名称
  54. */
  55. public void setFilename2(String filename2) {
  56. this.filename2=filename2;
  57. }
  58. /**
  59. *文件名称
  60. */
  61. public String getFilename2() {
  62. return this.filename2;
  63. }
  64. }