35559185087cc8b71205d886f4d28dc88aad2076.svn-base 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspPlanLogParam
  9. *
  10. * @author hjp
  11. * @date 2022-8-13
  12. */
  13. public class BisInspPlanLogParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 组ID
  19. @ApiParam(name = "组ID")
  20. @ApiModelProperty(value = "组ID", name = "gId")
  21. private String gId;
  22. // 创建时间
  23. @ApiParam(name = "创建时间")
  24. @ApiModelProperty(value = "创建时间", name = "intm")
  25. private Date intm;
  26. // 创建人
  27. @ApiParam(name = "创建人")
  28. @ApiModelProperty(value = "创建人", name = "persId")
  29. private String persId;
  30. public BisInspPlanLogParam() {
  31. }
  32. public String getId() {
  33. return id;
  34. }
  35. public void setId(String id) {
  36. this.id = id;
  37. }
  38. public String getGId() {
  39. return gId;
  40. }
  41. public void setGId(String gId) {
  42. this.gId = gId;
  43. }
  44. public Date getIntm() {
  45. return intm;
  46. }
  47. public void setIntm(Date intm) {
  48. this.intm = intm;
  49. }
  50. public String getPersId() {
  51. return persId;
  52. }
  53. public void setPersId(String persId) {
  54. this.persId = persId;
  55. }
  56. }