ActionEntity.java 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 lombok.EqualsAndHashCode;
  7. @EqualsAndHashCode(callSuper = true)
  8. @Data
  9. @TableName("base_action")
  10. public class ActionEntity extends SuperExtendEntity<String> {
  11. /**
  12. * 动作名称
  13. */
  14. @TableField("f_full_name")
  15. private String fullName;
  16. /**
  17. * 动作编码
  18. */
  19. @TableField("f_en_code")
  20. private String enCode;
  21. /**
  22. * 说明
  23. */
  24. @TableField("f_description")
  25. private String description;
  26. /**
  27. * 是否系统(1-自定义 2-自定义)
  28. */
  29. @TableField("f_type")
  30. private Integer type;
  31. /**
  32. * 启用
  33. */
  34. @TableField("f_enabled_mark")
  35. private String enabledMark;
  36. }