XtYhjsKey.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.huimv.xt.dataobject;
  2. public class XtYhjsKey extends BaseDO {
  3. /**
  4. * This field was generated by Apache iBATIS ibator.
  5. * This field corresponds to the database column xt_yhjs.jsid
  6. *
  7. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  8. */
  9. private Integer jsid;
  10. /**
  11. * This field was generated by Apache iBATIS ibator.
  12. * This field corresponds to the database column xt_yhjs.yhid
  13. *
  14. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  15. */
  16. private Integer yhid;
  17. /**
  18. * This method was generated by Apache iBATIS ibator.
  19. * This method returns the value of the database column xt_yhjs.jsid
  20. *
  21. * @return the value of xt_yhjs.jsid
  22. *
  23. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  24. */
  25. public Integer getJsid() {
  26. return jsid;
  27. }
  28. /**
  29. * This method was generated by Apache iBATIS ibator.
  30. * This method sets the value of the database column xt_yhjs.jsid
  31. *
  32. * @param jsid the value for xt_yhjs.jsid
  33. *
  34. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  35. */
  36. public void setJsid(Integer jsid) {
  37. this.jsid = jsid;
  38. }
  39. /**
  40. * This method was generated by Apache iBATIS ibator.
  41. * This method returns the value of the database column xt_yhjs.yhid
  42. *
  43. * @return the value of xt_yhjs.yhid
  44. *
  45. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  46. */
  47. public Integer getYhid() {
  48. return yhid;
  49. }
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method sets the value of the database column xt_yhjs.yhid
  53. *
  54. * @param yhid the value for xt_yhjs.yhid
  55. *
  56. * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
  57. */
  58. public void setYhid(Integer yhid) {
  59. this.yhid = yhid;
  60. }
  61. }