e2a468424c32a13751226b7ac8072c841bdfd27e.svn-base 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * TacInspBatchParam
  7. *
  8. * @author lune
  9. * @date 2019-9-6
  10. */
  11. public class TacInspBatchParam extends PageParam implements Serializable {
  12. @ApiModelProperty("主键id")
  13. private String id;
  14. @ApiModelProperty("*批次")
  15. private Long batch;
  16. @ApiModelProperty("*排序顺序")
  17. private Double sn;
  18. @ApiModelProperty("年度")
  19. private Long year;
  20. public TacInspBatchParam() {
  21. }
  22. public Long getYear() {
  23. return year;
  24. }
  25. public void setYear(Long year) {
  26. this.year = year;
  27. }
  28. public String getId() {
  29. return id;
  30. }
  31. public void setId(String id) {
  32. this.id = id;
  33. }
  34. public Long getBatch() {
  35. return batch;
  36. }
  37. public void setBatch(Long batch) {
  38. this.batch = batch;
  39. }
  40. public Double getSn() {
  41. return sn;
  42. }
  43. public void setSn(Double sn) {
  44. this.sn = sn;
  45. }
  46. }