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
45 lines
846 B
package com.xujie.modules.quickQuery.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 快捷查询字段配置 - rqrq
|
|
*/
|
|
@Data
|
|
@TableName("srm_quick_query_field")
|
|
public class QuickQueryField {
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
private Long id;
|
|
|
|
private String tableId;
|
|
|
|
private String fieldName;
|
|
|
|
private String fieldLabel;
|
|
|
|
/** NUMBER / TEXT / DATETIME */
|
|
private String dataType;
|
|
|
|
private Integer sortOrder;
|
|
|
|
private String site;
|
|
|
|
/** ACTIVE / INACTIVE */
|
|
private String status;
|
|
|
|
private String remark;
|
|
|
|
private String createdBy;
|
|
|
|
private Date createdDate;
|
|
|
|
private String updatedBy;
|
|
|
|
private Date updatedDate;
|
|
}
|