Qxcgsbrwfp.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.onemap.api.domain;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import org.springframework.format.annotation.DateTimeFormat;
  5. import java.util.Date;
  6. @TableName("t_cghj_qxcgsbrwfp")
  7. public class Qxcgsbrwfp {
  8. public String bsm;
  9. public String md5;
  10. public Integer chunk;
  11. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  12. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  13. public Date scsj;
  14. public String path;
  15. public String getBsm() {
  16. return bsm;
  17. }
  18. public void setBsm(String bsm) {
  19. this.bsm = bsm;
  20. }
  21. public String getMd5() {
  22. return md5;
  23. }
  24. public void setMd5(String md5) {
  25. this.md5 = md5;
  26. }
  27. public Integer getChunk() {
  28. return chunk;
  29. }
  30. public void setChunk(Integer chunk) {
  31. this.chunk = chunk;
  32. }
  33. public Date getScsj() {
  34. return scsj;
  35. }
  36. public void setScsj(Date scsj) {
  37. this.scsj = scsj;
  38. }
  39. public String getPath() {
  40. return path;
  41. }
  42. public void setPath(String path) {
  43. this.path = path;
  44. }
  45. }