1d0b9cfd88db56f74fe07e3e7c24ffd2e3516b49.svn-base 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:TacInspBatch
  8. *
  9. * @author lune
  10. * @date 2019-9-6
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class TacInspBatch extends BaseBean implements Serializable {
  14. @ApiModelProperty("主键id")
  15. private String id;
  16. @ApiModelProperty("*批次")
  17. private Long batch;
  18. @ApiModelProperty("*排序顺序")
  19. private Double sn;
  20. public TacInspBatch() {
  21. }
  22. public String getId() {
  23. return id;
  24. }
  25. public void setId(String id) {
  26. this.id = id;
  27. }
  28. public Long getBatch() {
  29. return batch;
  30. }
  31. public void setBatch(Long batch) {
  32. this.batch = batch;
  33. }
  34. public Double getSn() {
  35. return sn;
  36. }
  37. public void setSn(Double sn) {
  38. this.sn = sn;
  39. }
  40. @Override
  41. public String toString() {
  42. return "TacInspBatch [" + "id=" + id + ", batch=" + batch + ", sn=" + sn + "]";
  43. }
  44. }