/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the dreamlu.net developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: Chill 庄骞 (smallchill@163.com) */ package com.vci.ubcs.code.entity; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.vci.ubcs.starter.revision.model.BaseModel; import lombok.Data; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.EqualsAndHashCode; /** * 编码库定义-模板属性 实体类 * * @author yuxc * @since 2023-04-19 */ @Data @TableName("PL_CODE_CLSTEMPATTR") @ApiModel(value = "CodeClstempattr对象", description = "编码库定义-模板属性") @EqualsAndHashCode(callSuper = true) public class CodeClstempattrEntity extends BaseModel { /** * */ @ApiModelProperty(value = "") private String classifytemplateoid; /** * */ @ApiModelProperty(value = "") private String attributedatatype; /** * */ @ApiModelProperty(value = "") private String keyattrflag; /** * */ @ApiModelProperty(value = "") private String queryattrflag; /** * */ @ApiModelProperty(value = "") private String seniorqueryattrflag; /** * */ @ApiModelProperty(value = "") private String samerepeatattrflag; /** * */ @ApiModelProperty(value = "") private String sortattrflag; /** * */ @ApiModelProperty(value = "") private String qrcodeflag; /** * */ @ApiModelProperty(value = "") private String barcodeflag; /** * */ @ApiModelProperty(value = "") private String componentrule; /** * */ @ApiModelProperty(value = "") private String verifyrule; /** * */ @ApiModelProperty(value = "") private String classifyinvokelevel; /** * */ @ApiModelProperty(value = "") private String classifyinvokeattr; /** * */ @ApiModelProperty(value = "") private String classifyinvokeattrname; /** * */ @ApiModelProperty(value = "") private String classifyinvokeeditflag; /** * */ @ApiModelProperty(value = "") private Short ordernum; /** * */ @ApiModelProperty(value = "") private String formdisplayflag; /** * */ @ApiModelProperty(value = "") private String tabledisplayflag; /** * */ @ApiModelProperty(value = "") private String attributegroup; /** * */ @ApiModelProperty(value = "") private String enumid; /** * */ @ApiModelProperty(value = "") private String enumname; /** * */ @ApiModelProperty(value = "") private String enumeditflag; /** * */ @ApiModelProperty(value = "") private String referbtmid; /** * */ @ApiModelProperty(value = "") private String referbtmname; /** * */ @ApiModelProperty(value = "") private String referconfig; /** * */ @ApiModelProperty(value = "") private String requireflag; /** * */ @ApiModelProperty(value = "") private String readonlyflag; /** * */ @ApiModelProperty(value = "") private Short controllength; /** * */ @ApiModelProperty(value = "") private String formdisplaystyle; /** * */ @ApiModelProperty(value = "") private String tabledisplaystyle; /** * */ @ApiModelProperty(value = "") private String formhref; /** * */ @ApiModelProperty(value = "") private String tablehref; /** * */ @ApiModelProperty(value = "") private Integer precisionlength; /** * */ @ApiModelProperty(value = "") private Integer scalelength; /** * */ @ApiModelProperty(value = "") private String valuearea; /** * */ @ApiModelProperty(value = "") private String codedateformat; /** * */ @ApiModelProperty(value = "") private String tabledisplayjs; /** * */ @ApiModelProperty(value = "") private String textareaflag; /** * */ @ApiModelProperty(value = "") private String imageflag; /** * */ @ApiModelProperty(value = "") private String defaultvalue; /** * */ @ApiModelProperty(value = "") private String prefixvalue; /** * */ @ApiModelProperty(value = "") private String suffixvalue; /** * */ @ApiModelProperty(value = "") private String filtersourceattr; /** * */ @ApiModelProperty(value = "") private String filtersourceattrname; /** * */ @ApiModelProperty(value = "") private String enumstring; /** * */ @ApiModelProperty(value = "") private Short attrtablewidth; /** * */ @ApiModelProperty(value = "") @TableField("\"EXPLAIN\"") private String explain; /** * */ @ApiModelProperty(value = "") private String libraryidentification; /** * */ @ApiModelProperty(value = "") private String parentcode; /** * */ @ApiModelProperty(value = "") private String parentname; /** * */ @ApiModelProperty(value = "") private String parentqueryattr; }