CandidateUserVo.java 569 B

12345678910111213141516171819202122232425
  1. package jnpf.flowable.model.candidates;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * 类的描述
  7. *
  8. * @author JNPF@YinMai Info. Co., Ltd
  9. * @version 5.0.x
  10. * @since 2024/4/20 11:06
  11. */
  12. @Data
  13. public class CandidateUserVo implements Serializable {
  14. @Schema(description = "主键")
  15. private String id;
  16. @Schema(description = "名称")
  17. private String fullName;
  18. @Schema(description = "头像")
  19. private String headIcon;
  20. @Schema(description = "组织")
  21. private String organize;
  22. }