zhanghua
2022-09-20 78515395d832445e5423895caaab21195cc12ac3
ycl-platform/src/main/java/com/ycl/entity/store/StoreInfo.java
File was renamed from ycl-common/src/main/java/com/ycl/entity/platform/store/StoreInfo.java
@@ -1,6 +1,7 @@
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;
@@ -21,7 +22,7 @@
 */
@Getter
@Setter
@TableName("ums_store_storeinfo")
@TableName("ums_store_store_info")
@NoArgsConstructor
@AllArgsConstructor
@ApiModel(value = "StoreInfo对象", description = "")
@@ -36,25 +37,32 @@
    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;
}