| | |
| | | import com.github.yulichang.annotation.EntityMapping; |
| | | import com.vci.ubcs.code.vo.CodeShowFieldConfigVO; |
| | | import com.vci.ubcs.code.vo.CodeSrchCondConfigVO; |
| | | 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.util.List; |
| | | |
| | | /** |
| | | * 码段基础信息数据操作层 |
| | | * 编码规则管理-引用码段-参照配置 |
| | | * |
| | | * @author ludc |
| | | * @date 2023/5/19 17:24 |
| | | */ |
| | | @Data |
| | | @TableName("PL_CODE_REFERCONFIG") |
| | | @TableName(CodeTableNameConstant.PL_CODE_REFERCONFIG) |
| | | @ApiModel(value = "CodeReferConfig对象", description = "编码规则管理-引用码段-参照配置") |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) //不输出掉空字段 |
| | | public class CodeReferConfig extends BaseModel { |
| | |
| | | * 序列化 |
| | | */ |
| | | private static final long serialVersionUID = 957685333614390234L; |
| | | |
| | | /** |
| | | * 租户ID |
| | | */ |
| | | @JSONField() |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * 参照的业务类型 |
| | |
| | | /** |
| | | * 窗口显示的高度 |
| | | */ |
| | | private Long height; |
| | | private Integer height; |
| | | |
| | | /** |
| | | * 过滤(级联)属性 |
| | | */ |
| | | private String useFormKey; |
| | | |
| | | /** |
| | | * 过滤属性请求参数 |
| | |
| | | /** |
| | | * 每页显示条数 |
| | | */ |
| | | private String limit; |
| | | private Integer limit; |
| | | |
| | | /** |
| | | * 排序字段 |