PrintDevEntity.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package jnpf.base.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. /**
  7. * 打印模板-实体类
  8. *
  9. * @author JNPF开发平台组 YY
  10. * @version V3.2.0
  11. * @copyright 引迈信息技术有限公司
  12. * @date 2019年9月30日
  13. */
  14. @Data
  15. @EqualsAndHashCode
  16. @TableName("base_print_template")
  17. public class PrintDevEntity extends SuperExtendEntity.SuperExtendDescriptionEntity<String> {
  18. /**
  19. * 名称
  20. */
  21. @TableField("F_FULL_NAME")
  22. private String fullName;
  23. /**
  24. * 编码
  25. */
  26. @TableField("F_EN_CODE")
  27. private String enCode;
  28. /**
  29. * 分类
  30. */
  31. @TableField("F_CATEGORY")
  32. private String category;
  33. /**
  34. * 状态:0-未发布,1-已发布,2-已修改
  35. */
  36. @TableField("F_STATE")
  37. private Integer state;
  38. /**
  39. * 通用-将该模板设为通用(0-表单用,1-业务打印模板用)
  40. */
  41. @TableField("F_COMMON_USE")
  42. private Integer commonUse;
  43. /**
  44. * 发布范围:1-公开,2-权限设置
  45. */
  46. @TableField("F_VISIBLE_TYPE")
  47. private Integer visibleType;
  48. /**
  49. * 图标
  50. */
  51. @TableField("F_ICON")
  52. private String icon;
  53. /**
  54. * 图标颜色
  55. */
  56. @TableField("F_ICON_BACKGROUND")
  57. private String iconBackground;
  58. /**
  59. * 系统id
  60. */
  61. @TableField("F_SYSTEM_ID")
  62. private String systemId;
  63. }