RossChallengeRoundVo.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.caimei.model.vo;
  2. import lombok.Data;
  3. import org.springframework.format.annotation.DateTimeFormat;
  4. import java.sql.Date;
  5. import java.sql.Timestamp;
  6. @Data
  7. public class RossChallengeRoundVo {
  8. private Integer id;
  9. /**
  10. * 供应商id
  11. */
  12. private Integer authUserId;
  13. /**
  14. * 用户id
  15. */
  16. private Integer authId;
  17. /**
  18. * 用户登录账号
  19. */
  20. private String userName;
  21. /**
  22. * 参赛状态(0:未参赛;1已参赛)
  23. */
  24. private Integer contestStatus;
  25. /**
  26. * 参赛时间
  27. */
  28. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  29. private Timestamp contestTime;
  30. /**
  31. * 资质认证营业执照oss地址
  32. */
  33. private String licenseOssUrl;
  34. /**
  35. * 资质认证营业执照oss名称
  36. */
  37. private String licenseOssName;
  38. /**
  39. * 是否资质认证(0:未认证;1:已认证)
  40. */
  41. private Integer authenticationStatus;
  42. /**
  43. * 用户id
  44. */
  45. private Integer clubUserId;
  46. /**
  47. * 参赛时间(用于前端展示)
  48. */
  49. private String contestDate;
  50. /**
  51. * 机构名称
  52. */
  53. private String authParty;
  54. }