You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
846 B

  1. package com.xujie.modules.quickQuery.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * 快捷查询字段配置 - rqrq
  9. */
  10. @Data
  11. @TableName("srm_quick_query_field")
  12. public class QuickQueryField {
  13. @TableId(type = IdType.AUTO)
  14. private Long id;
  15. private String tableId;
  16. private String fieldName;
  17. private String fieldLabel;
  18. /** NUMBER / TEXT / DATETIME */
  19. private String dataType;
  20. private Integer sortOrder;
  21. private String site;
  22. /** ACTIVE / INACTIVE */
  23. private String status;
  24. private String remark;
  25. private String createdBy;
  26. private Date createdDate;
  27. private String updatedBy;
  28. private Date updatedDate;
  29. }