UserRelationEntity.java 790 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package jnpf.permission.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperExtendEntity;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * 用户关系
  9. *
  10. * @author JNPF开发平台组
  11. * @version V3.1.0
  12. * @copyright 引迈信息技术有限公司
  13. * @date 2019年9月26日 上午9:18
  14. */
  15. @Data
  16. @TableName("base_user_relation")
  17. public class UserRelationEntity extends SuperExtendEntity<String> {
  18. /**
  19. * 用户主键
  20. */
  21. @TableField("F_USER_ID")
  22. private String userId;
  23. /**
  24. * 对象类型
  25. */
  26. @TableField("F_OBJECT_TYPE")
  27. private String objectType;
  28. /**
  29. * 对象主键
  30. */
  31. @TableField("F_OBJECT_ID")
  32. private String objectId;
  33. }