| | |
| | | package cn.gistack.sm.materials.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; |
| | |
| | | * 城市 |
| | | */ |
| | | @ApiModelProperty(value = "城市") |
| | | @TableField(value = "city",updateStrategy = FieldStrategy.IGNORED) |
| | | private String city; |
| | | |
| | | /** |
| | | * 乡镇 |
| | | */ |
| | | @ApiModelProperty(value = "乡镇") |
| | | @ApiModelProperty(value = "区县") |
| | | @TableField(value = "county",updateStrategy = FieldStrategy.IGNORED) |
| | | private String county; |
| | | |
| | | /** |
| | | * 乡镇 |
| | | */ |
| | | @ApiModelProperty(value = "乡镇") |
| | | @TableField(value = "town",updateStrategy = FieldStrategy.IGNORED) |
| | | private String town; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | @ApiModelProperty(value = "名称") |