UserRelationForm.java 694 B

1234567891011121314151617181920212223242526
  1. package jnpf.permission.model.userrelation;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021/3/12 15:31
  11. */
  12. @Data
  13. @Schema(description = "用户关联表单")
  14. public class UserRelationForm {
  15. @Schema(description = "动作类型:0-新增,1-替换")
  16. private Integer actionType;
  17. @Schema(description = "数据id")
  18. private String objectId;
  19. @Schema(description = "对象类型:group 分组 posotion 岗位")
  20. private String objectType;
  21. @Schema(description = "用户id列表")
  22. private List<String> userIds;
  23. }