File was renamed from ycl-common/src/main/java/com/ycl/entity/platform/store/StoreInfo.java |
| | |
| | | package com.ycl.entity.platform.store; |
| | | package com.ycl.entity.store; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | @TableName("ums_store_storeinfo") |
| | | @TableName("ums_store_store_info") |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @ApiModel(value = "StoreInfo对象", description = "") |
| | |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("姓名") |
| | | @TableField("owner") |
| | | private String owner; |
| | | |
| | | @ApiModelProperty("门店名称") |
| | | private String storename; |
| | | @TableField("store_name") |
| | | private String storeName; |
| | | |
| | | @ApiModelProperty("联系方式") |
| | | @TableField("contact") |
| | | private String contact; |
| | | |
| | | @ApiModelProperty("地址") |
| | | private String storeaddr; |
| | | @TableField("store_address") |
| | | private String storeAddress; |
| | | |
| | | @ApiModelProperty("照片") |
| | | private String storephoto; |
| | | @TableField("store_photo") |
| | | private String storePhoto; |
| | | |
| | | @ApiModelProperty("身份证信息") |
| | | private String idcardinfo; |
| | | @TableField("id_card") |
| | | private String idCardInfo; |
| | | |
| | | @ApiModelProperty("门店积分") |
| | | private BigDecimal storescore; |
| | | @TableField("store_score") |
| | | private BigDecimal storeScore; |
| | | |
| | | |
| | | } |