| | |
| | | package org.jeecg.modules.mdc.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | * label |
| | | */ |
| | | @ApiModelProperty("label") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String label; |
| | | /** |
| | | * value1 |
| | | */ |
| | | @ApiModelProperty("value1") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String value1; |
| | | /** |
| | | * value2 |
| | | */ |
| | | @ApiModelProperty("value2") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String value2; |
| | | |
| | | } |