| | |
| | | */ |
| | | 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; |
| | |
| | | public class CodeClassifyTemplateButton extends BaseModel { |
| | | |
| | | /** |
| | | * |
| | | * 所属模板 |
| | | */ |
| | | @ApiModelProperty(value = "") |
| | | private String classifytemplateoid; |
| | | private String classifyTemplateOid; |
| | | |
| | | /** |
| | | * |
| | | * 按钮的主键 |
| | | */ |
| | | @ApiModelProperty(value = "") |
| | | private String classifybuttonoid; |
| | | private String classifyButtonOid; |
| | | |
| | | /** |
| | | * |
| | | * 按钮用途 |
| | | */ |
| | | @ApiModelProperty(value = "") |
| | | private String buttonuse; |
| | | private String buttonUse; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty(value = "") |
| | | private Integer orderNum; |
| | | |
| | | /** |
| | | * 所属按钮name |
| | | */ |
| | | @TableField(exist = false) |
| | | private String classifyButtonOidName; |
| | | |
| | | /** |
| | | * 所属按钮id |
| | | */ |
| | | @TableField(exist = false) |
| | | private String classifyButtonId; |
| | | |
| | | } |