LitigationDTO.java 978 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package cn.cslg.pas.common.model.novelty;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import lombok.Data;
  4. import java.util.Date;
  5. @Data
  6. public class LitigationDTO {
  7. private Integer id;
  8. /**
  9. * 案号
  10. */
  11. private String caseNumber;
  12. /**
  13. * 立案时间
  14. */
  15. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  16. private Date caseFieldTime;
  17. /**
  18. * 原告
  19. */
  20. private String plaintiff;
  21. /**
  22. * 被告
  23. */
  24. private String defendant;
  25. /**
  26. * 第三人
  27. */
  28. private String thirdPerson;
  29. /**
  30. * 被告代理人
  31. */
  32. private String plaintiffAgent;
  33. /**
  34. * 第三代理人
  35. */
  36. private String thirdAgent;
  37. /**
  38. * 合议庭成员
  39. */
  40. private String panelMember;
  41. /**
  42. * 结果
  43. */
  44. private String result;
  45. /**
  46. * 1一审 2二审
  47. */
  48. private Integer type;
  49. /**
  50. *
  51. */
  52. private Integer projectId;
  53. }