81188af96fbed58e8dfd62f253e4d29cc8efad9a.svn-base 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. /**
  7. * BisInspExersultParam
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public class BisInspExersultParam extends PageParam implements Serializable {
  13. private String exeId;
  14. private String guid;
  15. private String schmId;
  16. private String exeReport;
  17. private Date intm;
  18. private Date uptm;
  19. private String state;
  20. public BisInspExersultParam() {
  21. }
  22. public String getExeId() {
  23. return exeId;
  24. }
  25. public void setExeId(String exeId) {
  26. this.exeId = exeId;
  27. }
  28. public String getGuid() {
  29. return guid;
  30. }
  31. public void setGuid(String guid) {
  32. this.guid = guid;
  33. }
  34. public String getSchmId() {
  35. return schmId;
  36. }
  37. public void setSchmId(String schmId) {
  38. this.schmId = schmId;
  39. }
  40. public String getExeReport() {
  41. return exeReport;
  42. }
  43. public void setExeReport(String exeReport) {
  44. this.exeReport = exeReport;
  45. }
  46. public Date getIntm() {
  47. return intm;
  48. }
  49. public void setIntm(Date intm) {
  50. this.intm = intm;
  51. }
  52. public Date getUptm() {
  53. return uptm;
  54. }
  55. public void setUptm(Date uptm) {
  56. this.uptm = uptm;
  57. }
  58. public String getState() {
  59. return state;
  60. }
  61. public void setState(String state) {
  62. this.state = state;
  63. }
  64. }