package com.vci.ubcs.code.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.github.yulichang.annotation.EntityMapping;
|
import com.vci.ubcs.starter.constant.CodeTableNameConstant;
|
import com.vci.ubcs.starter.revision.model.BaseModel;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 编码规则管理-引用码段-参照配置-显示属性配置
|
*
|
* @author ludc
|
* @date 2023/5/19 17:35
|
*/
|
@Data
|
@TableName(CodeTableNameConstant.PL_CODE_SHOWFIELDCONFIG)
|
@ApiModel(value = "CodeShowFieldConfig对象", description = "编码规则管理-引用码段-参照配置-显示属性配置")
|
public class CodeShowFieldConfig implements Serializable {
|
|
private static final long serialVersionUID = -71135592796848692L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "OID",type = IdType.ASSIGN_UUID)
|
private String oid;
|
|
/**
|
* 列字段
|
*/
|
private String field;
|
|
/**
|
* 列名
|
*/
|
private String title;
|
|
/**
|
* 字段类型
|
*/
|
private String fieldType;
|
|
/**
|
* 列表可排序
|
*/
|
private String sort;
|
|
/**
|
* 显示的属性中的-排序字段
|
*/
|
private String attrSortField;
|
|
/**
|
* 字段宽度
|
*/
|
private Integer width;
|
|
/**
|
* 列固定位置
|
*/
|
private String fixedPosition;
|
|
/**
|
* js显示代码
|
*/
|
private String templet;
|
|
/**
|
* 是否快速查询
|
*/
|
private String isQuery;
|
|
/**
|
* 关联的参照配置主键
|
*/
|
private String referConfigOid;
|
|
/**
|
* 排序
|
*/
|
private Integer orderNum;
|
|
}
|