| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.vci.ubcs.starter.constant.CodeTableNameConstant; |
| | | import com.vci.ubcs.starter.revision.model.BaseModel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | * @since 2023-04-03 |
| | | */ |
| | | @Data |
| | | @TableName("PL_CODE_ALLCODE") |
| | | @TableName(CodeTableNameConstant.PL_CODE_ALLCODE) |
| | | @ApiModel(value = "CodeAllCode对象", description = "全部码值") |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class CodeAllCode extends BaseModel { |
| | |
| | | * 序列化 |
| | | */ |
| | | private static final long serialVersionUID = 5020487634341415429L; |
| | | |
| | | /** |
| | | * 分类的主键 |
| | | */ |
| | |
| | | * 没有填充前的流水号 |
| | | */ |
| | | private String unFillSerial; |
| | | /*** |
| | | * 码段值链接 |
| | | */ |
| | | private String codeDelimit; |
| | | |
| | | /** |
| | | * 记录已回收的业务数据:JSON格式的 |
| | | */ |
| | | private String businessData; |
| | | |
| | | } |