From e81d5ff655e0c5efc85d2e4b3803bc604baf59f1 Mon Sep 17 00:00:00 2001
From: phpcjl <phpcjl@gmail.com>
Date: 星期四, 28 十一月 2024 09:57:15 +0800
Subject: [PATCH] 1.完成部分接口开发

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java |  101 ++++++++++----------------------------------------
 1 files changed, 21 insertions(+), 80 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java
index 2375a33..62f760e 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java
@@ -1,7 +1,5 @@
 package com.ruoyi.other.api.domain;
 
-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;
@@ -12,117 +10,60 @@
 import java.io.Serializable;
 import java.math.BigDecimal;
 
-/**
- * <p>
- * 
- * </p>
- *
- * @author luodangjia
- * @since 2024-11-20
- */
 @Data
 @EqualsAndHashCode(callSuper = false)
 @TableName("t_goods_area")
-@ApiModel(value="GoodsArea对象", description="")
+@ApiModel(value = "GoodsArea对象", description = "")
 public class GoodsArea implements Serializable {
-
     private static final long serialVersionUID = 1L;
 
     @ApiModelProperty(value = "主键")
-    @TableId(value = "id", type = IdType.NONE)
+    @TableId
     private Long id;
-
     @ApiModelProperty(value = "商品id")
-    @TableField("goods_id")
-    private Integer goodsId;
-    
+    private Long goodsPd;
     @ApiModelProperty(value = "省")
-    @TableField("province")
     private String province;
-    
     @ApiModelProperty(value = "省编号")
-    @TableField("province_code")
-    private String provinceCode;
-    
+    private String provincePode;
     @ApiModelProperty(value = "市")
-    @TableField("city")
     private String city;
-    
     @ApiModelProperty(value = "市编号")
-    @TableField("city_code")
-    private String cityCode;
-    
+    private String cityPode;
     @ApiModelProperty(value = "区")
-    @TableField("districts")
     private String districts;
-    
     @ApiModelProperty(value = "区编号")
-    @TableField("districts_code")
-    private String districtsCode;
-
+    private String districtsPode;
     @ApiModelProperty(value = "会员级别(1=普通会员,2=黄金会员,3=钻石会员,4=准代理,5=代理,6=总代,7=合伙人)")
-    @TableField("vip")
-    private Integer vip;
-
+    private Long vip;
     @ApiModelProperty(value = "现金支付(0=否,1=是)")
-    @TableField("cash_payment")
-    private Integer cashPayment;
-
+    private Long cashPayment;
     @ApiModelProperty(value = "积分支付(0=否,1=是)")
-    @TableField("point_payment")
-    private Integer pointPayment;
-
+    private Long pointPayment;
     @ApiModelProperty(value = "基础售价")
-    @TableField("selling_price")
     private BigDecimal sellingPrice;
-
     @ApiModelProperty(value = "基础积分")
-    @TableField("integral")
-    private Integer integral;
-
+    private Long integral;
     @ApiModelProperty(value = "可获得消费积分")
-    @TableField("earn_spending_points")
-    private Integer earnSpendingPoints;
-
+    private Long earnPpendingPoints;
     @ApiModelProperty(value = "上级获得分佣金额")
-    @TableField("superior_subcommission")
-    private BigDecimal superiorSubcommission;
-
+    private BigDecimal superiorPubcommission;
     @ApiModelProperty(value = "上级获得返佣积分")
-    @TableField("superior_rebate_points")
-    private Integer superiorRebatePoints;
-
+    private Long superiorPebatePoints;
     @ApiModelProperty(value = "获取返佣积分上级类型(1=直推上级,2=直帮上级)")
-    @TableField("superior_type")
-    private Integer superiorType;
-
+    private Long superiorPype;
     @ApiModelProperty(value = "核销门店可获得服务费")
-    @TableField("servuce_shop_charges")
-    private BigDecimal servuceShopCharges;
-
+    private BigDecimal servucePhopPharges;
     @ApiModelProperty(value = "核销门店可获得服务积分")
-    @TableField("servuce_shop_points")
-    private Integer servuceShopPoints;
-
+    private Long servucePhopPoints;
     @ApiModelProperty(value = "技师可获得服务积分")
-    @TableField("technician_points")
-    private Integer technicianPoints;
-
+    private Long technicianPoints;
     @ApiModelProperty(value = "绑定门店可获得分佣金额")
-    @TableField("bound_shop_charges")
-    private BigDecimal boundShopCharges;
-
+    private BigDecimal boundPhopPharges;
     @ApiModelProperty(value = "绑定门店可获得返佣积分")
-    @TableField("bound_shop_points")
-    private Integer boundShopPoints;
-
+    private Long boundPhopPoints;
     @ApiModelProperty(value = "绑定门店上级门店可获得分佣金额")
-    @TableField("bound_shop_superiors_charges")
-    private BigDecimal boundShopSuperiorsCharges;
-
+    private BigDecimal boundPhopPuperiorsPharges;
     @ApiModelProperty(value = "绑定门店上级门店可获得返佣积分")
-    @TableField("bound_shop_superiors_points")
-    private Integer boundShopSuperiorsPoints;
-
-
+    private Long boundPhopPuperiorsPoints;
 }

--
Gitblit v1.7.1