GroupEntity.java 652 B

12345678910111213141516171819202122232425262728293031
  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. /**
  7. * 分组管理
  8. *
  9. * @author :JNPF开发平台组
  10. * @version: V3.1.0
  11. * @copyright 引迈信息技术有限公司
  12. * @date :2022/3/10 17:53
  13. */
  14. @Data
  15. @TableName("base_group")
  16. public class GroupEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  17. /**
  18. * 名称
  19. */
  20. @TableField("f_full_name")
  21. private String fullName;
  22. /**
  23. * 编码
  24. */
  25. @TableField("f_en_code")
  26. private String enCode;
  27. }