ValueEvaluation.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  5. public class ValueEvaluation {
  6. @JsonFormat(shape = Shape.STRING)
  7. private Long id;
  8. /**
  9. * 用户id
  10. */
  11. private String uid;
  12. /**
  13. * 创建时间
  14. */
  15. private Date createTime;
  16. /**
  17. * 技术名称
  18. */
  19. private String name;
  20. /**
  21. * 评估值
  22. */
  23. private Long value;
  24. /**
  25. * 当前步骤
  26. */
  27. private Integer step;
  28. /**
  29. * 步骤记录
  30. */
  31. private String log;
  32. public Long getId() {
  33. return id;
  34. }
  35. public void setId(Long id) {
  36. this.id = id;
  37. }
  38. public String getUid() {
  39. return uid;
  40. }
  41. public void setUid(String uid) {
  42. this.uid = uid;
  43. }
  44. public Date getCreateTime() {
  45. return createTime;
  46. }
  47. public void setCreateTime(Date createTime) {
  48. this.createTime = createTime;
  49. }
  50. public String getName() {
  51. return name;
  52. }
  53. public void setName(String name) {
  54. this.name = name;
  55. }
  56. public Long getValue() {
  57. return value;
  58. }
  59. public void setValue(Long value) {
  60. this.value = value;
  61. }
  62. public Integer getStep() {
  63. return step;
  64. }
  65. public void setStep(Integer step) {
  66. this.step = step;
  67. }
  68. public String getLog() {
  69. return log;
  70. }
  71. public void setLog(String log) {
  72. this.log = log;
  73. }
  74. }