diff --git a/.idea/compiler.xml b/.idea/compiler.xml index edcdac6..e57d138 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -11,6 +11,7 @@ + @@ -21,6 +22,7 @@ + diff --git a/.idea/encodings.xml b/.idea/encodings.xml index 643613d..9c036bc 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -7,6 +7,7 @@ + diff --git a/guigu-ssyx-parent/common/common-util/pom.xml b/guigu-ssyx-parent/common/common-util/pom.xml index 621c6ea..66c2049 100644 --- a/guigu-ssyx-parent/common/common-util/pom.xml +++ b/guigu-ssyx-parent/common/common-util/pom.xml @@ -26,22 +26,6 @@ joda-time - - - com.baomidou - mybatis-plus-boot-starter - - - - - com.baomidou - mybatis-plus-generator - 3.4.0 - - - mysql - mysql-connector-java - com.atguigu model diff --git a/guigu-ssyx-parent/common/service-util/pom.xml b/guigu-ssyx-parent/common/service-util/pom.xml index 702c6a0..afd4184 100644 --- a/guigu-ssyx-parent/common/service-util/pom.xml +++ b/guigu-ssyx-parent/common/service-util/pom.xml @@ -37,6 +37,8 @@ redisson 3.11.2 + + com.baomidou mybatis-plus-boot-starter @@ -47,6 +49,16 @@ 1.0-SNAPSHOT compile + + + com.baomidou + mybatis-plus-generator + 3.4.0 + + + mysql + mysql-connector-java + org.apache.velocity velocity-engine-core diff --git a/guigu-ssyx-parent/common/common-util/src/test/java/ssyx/CodeGet.java b/guigu-ssyx-parent/common/service-util/src/test/java/com/atguigu/ssyx/CodeGet.java similarity index 77% rename from guigu-ssyx-parent/common/common-util/src/test/java/ssyx/CodeGet.java rename to guigu-ssyx-parent/common/service-util/src/test/java/com/atguigu/ssyx/CodeGet.java index d9b47e4..261df28 100644 --- a/guigu-ssyx-parent/common/common-util/src/test/java/ssyx/CodeGet.java +++ b/guigu-ssyx-parent/common/service-util/src/test/java/com/atguigu/ssyx/CodeGet.java @@ -1,4 +1,4 @@ -package ssyx; +package com.atguigu.ssyx; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.generator.AutoGenerator; @@ -25,7 +25,7 @@ public class CodeGet { // 2、全局配置 // 全局配置 GlobalConfig gc = new GlobalConfig(); - gc.setOutputDir("guigu-ssyx-parent/service/service-sys" + "/src/main/java"); + gc.setOutputDir("guigu-ssyx-parent/service/service-product" + "/src/main/java"); gc.setServiceName("%sService"); //去掉Service接口的首字母I gc.setAuthor("atguigu"); @@ -34,17 +34,17 @@ public class CodeGet { // 3、数据源配置 DataSourceConfig dsc = new DataSourceConfig(); - dsc.setUrl("jdbc:mysql://82.157.68.223:3306/shequ-sys?serverTimezone=GMT%2B8&useSSL=false"); + dsc.setUrl("jdbc:mysql://82.157.68.223:3306/shequ-product?serverTimezone=GMT%2B8&useSSL=false"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); - dsc.setUsername("shequ-sys"); - dsc.setPassword("shequ-sys"); + dsc.setUsername("shequ-product"); + dsc.setPassword("shequ-product"); dsc.setDbType(DbType.MYSQL); mpg.setDataSource(dsc); // 4、包配置 PackageConfig pc = new PackageConfig(); pc.setParent("com.atguigu.ssyx"); - pc.setModuleName("sys"); //模块名 + pc.setModuleName("product"); //模块名 pc.setController("controller"); pc.setService("service"); pc.setMapper("mapper"); @@ -53,7 +53,7 @@ public class CodeGet { // 5、策略配置 StrategyConfig strategy = new StrategyConfig(); - strategy.setInclude("region", "ware", "region_ware"); + strategy.setInclude("attr", "attr_group", "category", "comment", "base_category_trademark", "comment_replay", "mq_repeat_record", "region_ware", "sku_attr_value", "sku_detail", "sku_image", "sku_info", "sku_poster", "sku_stock_history", "ware"); strategy.setNaming(NamingStrategy.underline_to_camel);//数据库表映射到实体的命名策略 @@ -70,3 +70,4 @@ public class CodeGet { } } + diff --git a/guigu-ssyx-parent/model/src/main/java/com/atguigu/ssyx/model/product/BaseCategoryTrademark.java b/guigu-ssyx-parent/model/src/main/java/com/atguigu/ssyx/model/product/BaseCategoryTrademark.java new file mode 100644 index 0000000..0f0851d --- /dev/null +++ b/guigu-ssyx-parent/model/src/main/java/com/atguigu/ssyx/model/product/BaseCategoryTrademark.java @@ -0,0 +1,51 @@ +package com.atguigu.ssyx.model.product; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.time.LocalDateTime; + +/** + *

+ * 三级分类表 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Data +@EqualsAndHashCode(callSuper = false) +public class BaseCategoryTrademark implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 三级级分类id + */ + private Long category3Id; + + /** + * 品牌id + */ + private Long trademarkId; + + /** + * 创建时间 + */ + private LocalDateTime createTime; + + private LocalDateTime updateTime; + + private Integer isDeleted; + + +} diff --git a/guigu-ssyx-parent/model/src/main/java/com/atguigu/ssyx/model/product/SkuDetail.java b/guigu-ssyx-parent/model/src/main/java/com/atguigu/ssyx/model/product/SkuDetail.java new file mode 100644 index 0000000..c6e2cd7 --- /dev/null +++ b/guigu-ssyx-parent/model/src/main/java/com/atguigu/ssyx/model/product/SkuDetail.java @@ -0,0 +1,57 @@ +package com.atguigu.ssyx.model.product; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.time.LocalDateTime; + +/** + *

+ * spu属性值 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Data +@EqualsAndHashCode(callSuper = false) +public class SkuDetail implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * id + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 商品id + */ + private Long skuId; + + /** + * 详情内容 + */ + private String detailHtml; + + /** + * 创建时间 + */ + private LocalDateTime createTime; + + /** + * 更新时间 + */ + private LocalDateTime updateTime; + + /** + * 删除标记(0:不可用 1:可用) + */ + private Integer isDeleted; + + +} diff --git a/guigu-ssyx-parent/service/pom.xml b/guigu-ssyx-parent/service/pom.xml index 36e72ea..d5ac2e9 100644 --- a/guigu-ssyx-parent/service/pom.xml +++ b/guigu-ssyx-parent/service/pom.xml @@ -14,6 +14,7 @@ service-acl service-sys + service-product diff --git a/guigu-ssyx-parent/service/service-product/pom.xml b/guigu-ssyx-parent/service/service-product/pom.xml new file mode 100644 index 0000000..0e949b0 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.atguigu + service + 1.0-SNAPSHOT + + + service-product + + + 8 + 8 + UTF-8 + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/ServiceProductApplication.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/ServiceProductApplication.java new file mode 100644 index 0000000..1745632 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/ServiceProductApplication.java @@ -0,0 +1,19 @@ +package com.atguigu.ssyx; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +/** + * ClassName: ServiceProductApplication + * Package: com.atguigu.ssyx + * + * @author yovinchen + * @Create 2023/9/15 09:47 + */ +@SpringBootApplication +public class ServiceProductApplication { + + public static void main(String[] args) { + SpringApplication.run(ServiceProductApplication.class, args); + } +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/AttrController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/AttrController.java new file mode 100644 index 0000000..2476469 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/AttrController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 商品属性 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/attr") +public class AttrController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/AttrGroupController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/AttrGroupController.java new file mode 100644 index 0000000..fb67092 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/AttrGroupController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 属性分组 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/attr-group") +public class AttrGroupController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/BaseCategoryTrademarkController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/BaseCategoryTrademarkController.java new file mode 100644 index 0000000..8772588 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/BaseCategoryTrademarkController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 三级分类表 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/base-category-trademark") +public class BaseCategoryTrademarkController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CategoryController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CategoryController.java new file mode 100644 index 0000000..3a5b191 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CategoryController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 商品三级分类 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/category") +public class CategoryController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CommentController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CommentController.java new file mode 100644 index 0000000..7710995 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CommentController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 商品评价 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/comment") +public class CommentController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CommentReplayController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CommentReplayController.java new file mode 100644 index 0000000..414a0b5 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/CommentReplayController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 产品评价回复表 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/comment-replay") +public class CommentReplayController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/MqRepeatRecordController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/MqRepeatRecordController.java new file mode 100644 index 0000000..a754393 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/MqRepeatRecordController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * mq去重表 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/mq-repeat-record") +public class MqRepeatRecordController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/RegionWareController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/RegionWareController.java new file mode 100644 index 0000000..447d25f --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/RegionWareController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 城市仓库关联表 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/region-ware") +public class RegionWareController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuAttrValueController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuAttrValueController.java new file mode 100644 index 0000000..edd6252 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuAttrValueController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * spu属性值 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/sku-attr-value") +public class SkuAttrValueController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuDetailController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuDetailController.java new file mode 100644 index 0000000..488ad77 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuDetailController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * spu属性值 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/sku-detail") +public class SkuDetailController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuImageController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuImageController.java new file mode 100644 index 0000000..7118307 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuImageController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 商品图片 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/sku-image") +public class SkuImageController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuInfoController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuInfoController.java new file mode 100644 index 0000000..c546587 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuInfoController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * sku信息 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/sku-info") +public class SkuInfoController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuPosterController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuPosterController.java new file mode 100644 index 0000000..2e2a31c --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuPosterController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 商品海报表 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/sku-poster") +public class SkuPosterController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuStockHistoryController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuStockHistoryController.java new file mode 100644 index 0000000..46ba08e --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/SkuStockHistoryController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * sku的库存历史记录 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/sku-stock-history") +public class SkuStockHistoryController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/WareController.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/WareController.java new file mode 100644 index 0000000..3faf9d8 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/controller/WareController.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.controller; + + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + *

+ * 仓库表 前端控制器 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@RestController +@RequestMapping("/product/ware") +public class WareController { + +} + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/AttrGroupMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/AttrGroupMapper.java new file mode 100644 index 0000000..33c50b9 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/AttrGroupMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.AttrGroup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 属性分组 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface AttrGroupMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/AttrMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/AttrMapper.java new file mode 100644 index 0000000..176c8b4 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/AttrMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.Attr; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 商品属性 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface AttrMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/BaseCategoryTrademarkMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/BaseCategoryTrademarkMapper.java new file mode 100644 index 0000000..c1358ed --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/BaseCategoryTrademarkMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.BaseCategoryTrademark; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 三级分类表 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface BaseCategoryTrademarkMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CategoryMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CategoryMapper.java new file mode 100644 index 0000000..5989ce8 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CategoryMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.Category; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 商品三级分类 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface CategoryMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CommentMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CommentMapper.java new file mode 100644 index 0000000..bbbf58b --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CommentMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.Comment; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 商品评价 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface CommentMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CommentReplayMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CommentReplayMapper.java new file mode 100644 index 0000000..1e31e1b --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/CommentReplayMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.CommentReplay; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 产品评价回复表 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface CommentReplayMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/MqRepeatRecordMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/MqRepeatRecordMapper.java new file mode 100644 index 0000000..e812db6 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/MqRepeatRecordMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.base.MqRepeatRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * mq去重表 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface MqRepeatRecordMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/RegionWareMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/RegionWareMapper.java new file mode 100644 index 0000000..635db85 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/RegionWareMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.sys.RegionWare; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 城市仓库关联表 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface RegionWareMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuAttrValueMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuAttrValueMapper.java new file mode 100644 index 0000000..c2d0533 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuAttrValueMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.SkuAttrValue; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * spu属性值 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuAttrValueMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuDetailMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuDetailMapper.java new file mode 100644 index 0000000..a233b41 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuDetailMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.SkuDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * spu属性值 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuDetailMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuImageMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuImageMapper.java new file mode 100644 index 0000000..9b12a6e --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuImageMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.SkuImage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 商品图片 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuImageMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuInfoMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuInfoMapper.java new file mode 100644 index 0000000..126a5ab --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuInfoMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.SkuInfo; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * sku信息 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuInfoMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuPosterMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuPosterMapper.java new file mode 100644 index 0000000..7776fd2 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuPosterMapper.java @@ -0,0 +1,17 @@ +package com.atguigu.ssyx.product.mapper; + + +import com.atguigu.ssyx.model.product.SkuPoster; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 商品海报表 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuPosterMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuStockHistoryMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuStockHistoryMapper.java new file mode 100644 index 0000000..c4e1d13 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/SkuStockHistoryMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.product.SkuStockHistory; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * sku的库存历史记录 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuStockHistoryMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/WareMapper.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/WareMapper.java new file mode 100644 index 0000000..7f9645f --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/WareMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.mapper; + +import com.atguigu.ssyx.model.sys.Ware; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 仓库表 Mapper 接口 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface WareMapper extends BaseMapper { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/AttrGroupMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/AttrGroupMapper.xml new file mode 100644 index 0000000..bef7818 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/AttrGroupMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/AttrMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/AttrMapper.xml new file mode 100644 index 0000000..55a85a3 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/AttrMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/BaseCategoryTrademarkMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/BaseCategoryTrademarkMapper.xml new file mode 100644 index 0000000..61edfa2 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/BaseCategoryTrademarkMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CategoryMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CategoryMapper.xml new file mode 100644 index 0000000..ed9278f --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CategoryMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CommentMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CommentMapper.xml new file mode 100644 index 0000000..90b190c --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CommentMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CommentReplayMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CommentReplayMapper.xml new file mode 100644 index 0000000..564d57b --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/CommentReplayMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/MqRepeatRecordMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/MqRepeatRecordMapper.xml new file mode 100644 index 0000000..b961147 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/MqRepeatRecordMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/RegionWareMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/RegionWareMapper.xml new file mode 100644 index 0000000..ee53825 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/RegionWareMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuAttrValueMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuAttrValueMapper.xml new file mode 100644 index 0000000..bcf744e --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuAttrValueMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuDetailMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuDetailMapper.xml new file mode 100644 index 0000000..7df959c --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuDetailMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuImageMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuImageMapper.xml new file mode 100644 index 0000000..b144efe --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuImageMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuInfoMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuInfoMapper.xml new file mode 100644 index 0000000..5052dec --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuInfoMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuPosterMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuPosterMapper.xml new file mode 100644 index 0000000..010e3dd --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuPosterMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuStockHistoryMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuStockHistoryMapper.xml new file mode 100644 index 0000000..102a7df --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/SkuStockHistoryMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/WareMapper.xml b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/WareMapper.xml new file mode 100644 index 0000000..2765aed --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/mapper/xml/WareMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/AttrGroupService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/AttrGroupService.java new file mode 100644 index 0000000..915ad19 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/AttrGroupService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.AttrGroup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 属性分组 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface AttrGroupService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/AttrService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/AttrService.java new file mode 100644 index 0000000..0c99bd0 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/AttrService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.Attr; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 商品属性 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface AttrService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/BaseCategoryTrademarkService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/BaseCategoryTrademarkService.java new file mode 100644 index 0000000..e0354a1 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/BaseCategoryTrademarkService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.BaseCategoryTrademark; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 三级分类表 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface BaseCategoryTrademarkService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CategoryService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CategoryService.java new file mode 100644 index 0000000..f4bd727 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CategoryService.java @@ -0,0 +1,17 @@ +package com.atguigu.ssyx.product.service; + + +import com.atguigu.ssyx.model.product.Category; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 商品三级分类 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface CategoryService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CommentReplayService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CommentReplayService.java new file mode 100644 index 0000000..ae5ad05 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CommentReplayService.java @@ -0,0 +1,17 @@ +package com.atguigu.ssyx.product.service; + + +import com.atguigu.ssyx.model.product.CommentReplay; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 产品评价回复表 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface CommentReplayService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CommentService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CommentService.java new file mode 100644 index 0000000..1915ba3 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/CommentService.java @@ -0,0 +1,17 @@ +package com.atguigu.ssyx.product.service; + + +import com.atguigu.ssyx.model.product.Comment; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 商品评价 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface CommentService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/MqRepeatRecordService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/MqRepeatRecordService.java new file mode 100644 index 0000000..dcada18 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/MqRepeatRecordService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.base.MqRepeatRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * mq去重表 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface MqRepeatRecordService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/RegionWareService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/RegionWareService.java new file mode 100644 index 0000000..553c0fd --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/RegionWareService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.sys.RegionWare; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 城市仓库关联表 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface RegionWareService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuAttrValueService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuAttrValueService.java new file mode 100644 index 0000000..7241d7f --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuAttrValueService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.SkuAttrValue; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * spu属性值 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuAttrValueService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuDetailService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuDetailService.java new file mode 100644 index 0000000..08cc0b8 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuDetailService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.SkuDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * spu属性值 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuDetailService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuImageService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuImageService.java new file mode 100644 index 0000000..afa0297 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuImageService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.SkuImage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 商品图片 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuImageService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuInfoService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuInfoService.java new file mode 100644 index 0000000..4129de1 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuInfoService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.SkuInfo; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * sku信息 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuInfoService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuPosterService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuPosterService.java new file mode 100644 index 0000000..bb75a57 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuPosterService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.SkuPoster; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 商品海报表 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuPosterService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuStockHistoryService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuStockHistoryService.java new file mode 100644 index 0000000..c08679f --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/SkuStockHistoryService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.product.SkuStockHistory; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * sku的库存历史记录 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface SkuStockHistoryService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/WareService.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/WareService.java new file mode 100644 index 0000000..e9d6056 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/WareService.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.product.service; + +import com.atguigu.ssyx.model.sys.Ware; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 仓库表 服务类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +public interface WareService extends IService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/AttrGroupServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/AttrGroupServiceImpl.java new file mode 100644 index 0000000..083b0c2 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/AttrGroupServiceImpl.java @@ -0,0 +1,21 @@ +package com.atguigu.ssyx.product.service.impl; + + +import com.atguigu.ssyx.model.product.AttrGroup; +import com.atguigu.ssyx.product.mapper.AttrGroupMapper; +import com.atguigu.ssyx.product.service.AttrGroupService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 属性分组 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class AttrGroupServiceImpl extends ServiceImpl implements AttrGroupService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/AttrServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/AttrServiceImpl.java new file mode 100644 index 0000000..093c749 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/AttrServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.Attr; +import com.atguigu.ssyx.product.mapper.AttrMapper; +import com.atguigu.ssyx.product.service.AttrService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 商品属性 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class AttrServiceImpl extends ServiceImpl implements AttrService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/BaseCategoryTrademarkServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/BaseCategoryTrademarkServiceImpl.java new file mode 100644 index 0000000..9a4f6cf --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/BaseCategoryTrademarkServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.BaseCategoryTrademark; +import com.atguigu.ssyx.product.mapper.BaseCategoryTrademarkMapper; +import com.atguigu.ssyx.product.service.BaseCategoryTrademarkService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 三级分类表 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class BaseCategoryTrademarkServiceImpl extends ServiceImpl implements BaseCategoryTrademarkService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CategoryServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CategoryServiceImpl.java new file mode 100644 index 0000000..30d93d8 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CategoryServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.Category; +import com.atguigu.ssyx.product.mapper.CategoryMapper; +import com.atguigu.ssyx.product.service.CategoryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 商品三级分类 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class CategoryServiceImpl extends ServiceImpl implements CategoryService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CommentReplayServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CommentReplayServiceImpl.java new file mode 100644 index 0000000..d78dcc6 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CommentReplayServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.CommentReplay; +import com.atguigu.ssyx.product.mapper.CommentReplayMapper; +import com.atguigu.ssyx.product.service.CommentReplayService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 产品评价回复表 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class CommentReplayServiceImpl extends ServiceImpl implements CommentReplayService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CommentServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CommentServiceImpl.java new file mode 100644 index 0000000..59b8947 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/CommentServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.Comment; +import com.atguigu.ssyx.product.mapper.CommentMapper; +import com.atguigu.ssyx.product.service.CommentService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 商品评价 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class CommentServiceImpl extends ServiceImpl implements CommentService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/MqRepeatRecordServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/MqRepeatRecordServiceImpl.java new file mode 100644 index 0000000..807b378 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/MqRepeatRecordServiceImpl.java @@ -0,0 +1,21 @@ +package com.atguigu.ssyx.product.service.impl; + + +import com.atguigu.ssyx.model.base.MqRepeatRecord; +import com.atguigu.ssyx.product.mapper.MqRepeatRecordMapper; +import com.atguigu.ssyx.product.service.MqRepeatRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * mq去重表 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class MqRepeatRecordServiceImpl extends ServiceImpl implements MqRepeatRecordService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/RegionWareServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/RegionWareServiceImpl.java new file mode 100644 index 0000000..6ea86f8 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/RegionWareServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.sys.RegionWare; +import com.atguigu.ssyx.product.mapper.RegionWareMapper; +import com.atguigu.ssyx.product.service.RegionWareService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 城市仓库关联表 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class RegionWareServiceImpl extends ServiceImpl implements RegionWareService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuAttrValueServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuAttrValueServiceImpl.java new file mode 100644 index 0000000..46c69cb --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuAttrValueServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.SkuAttrValue; +import com.atguigu.ssyx.product.mapper.SkuAttrValueMapper; +import com.atguigu.ssyx.product.service.SkuAttrValueService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * spu属性值 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class SkuAttrValueServiceImpl extends ServiceImpl implements SkuAttrValueService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuDetailServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuDetailServiceImpl.java new file mode 100644 index 0000000..8bcf5f7 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuDetailServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.SkuDetail; +import com.atguigu.ssyx.product.mapper.SkuDetailMapper; +import com.atguigu.ssyx.product.service.SkuDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * spu属性值 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class SkuDetailServiceImpl extends ServiceImpl implements SkuDetailService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuImageServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuImageServiceImpl.java new file mode 100644 index 0000000..928ce40 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuImageServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.SkuImage; +import com.atguigu.ssyx.product.mapper.SkuImageMapper; +import com.atguigu.ssyx.product.service.SkuImageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 商品图片 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class SkuImageServiceImpl extends ServiceImpl implements SkuImageService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuInfoServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuInfoServiceImpl.java new file mode 100644 index 0000000..611ea14 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuInfoServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.SkuInfo; +import com.atguigu.ssyx.product.mapper.SkuInfoMapper; +import com.atguigu.ssyx.product.service.SkuInfoService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * sku信息 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class SkuInfoServiceImpl extends ServiceImpl implements SkuInfoService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuPosterServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuPosterServiceImpl.java new file mode 100644 index 0000000..e8c0ca1 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuPosterServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.SkuPoster; +import com.atguigu.ssyx.product.mapper.SkuPosterMapper; +import com.atguigu.ssyx.product.service.SkuPosterService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 商品海报表 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class SkuPosterServiceImpl extends ServiceImpl implements SkuPosterService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuStockHistoryServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuStockHistoryServiceImpl.java new file mode 100644 index 0000000..6a17eff --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/SkuStockHistoryServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.product.SkuStockHistory; +import com.atguigu.ssyx.product.mapper.SkuStockHistoryMapper; +import com.atguigu.ssyx.product.service.SkuStockHistoryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * sku的库存历史记录 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class SkuStockHistoryServiceImpl extends ServiceImpl implements SkuStockHistoryService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/WareServiceImpl.java b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/WareServiceImpl.java new file mode 100644 index 0000000..4a7c97f --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/java/com/atguigu/ssyx/product/service/impl/WareServiceImpl.java @@ -0,0 +1,20 @@ +package com.atguigu.ssyx.product.service.impl; + +import com.atguigu.ssyx.model.sys.Ware; +import com.atguigu.ssyx.product.mapper.WareMapper; +import com.atguigu.ssyx.product.service.WareService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 仓库表 服务实现类 + *

+ * + * @author atguigu + * @since 2023-09-15 + */ +@Service +public class WareServiceImpl extends ServiceImpl implements WareService { + +} diff --git a/guigu-ssyx-parent/service/service-product/src/main/resources/application-dev.yml b/guigu-ssyx-parent/service/service-product/src/main/resources/application-dev.yml new file mode 100644 index 0000000..10e3047 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/resources/application-dev.yml @@ -0,0 +1,19 @@ +server: + port: 8203 + +mybatis-plus: + configuration: + log-impl: org.apache.ibatis.logging.stdout.StdOutImpl + +spring: + datasource: + type: com.zaxxer.hikari.HikariDataSource + driver-class-name: com.mysql.cj.jdbc.Driver + url: jdbc:mysql://82.157.68.223:3306/shequ-product?characterEncoding=utf-8&useSSL=false + username: shequ-product + password: shequ-product + + jackson: + date-format: yyyy-MM-dd HH:mm:ss + time-zone: GMT+8 + diff --git a/guigu-ssyx-parent/service/service-product/src/main/resources/application.yml b/guigu-ssyx-parent/service/service-product/src/main/resources/application.yml new file mode 100644 index 0000000..4246912 --- /dev/null +++ b/guigu-ssyx-parent/service/service-product/src/main/resources/application.yml @@ -0,0 +1,5 @@ +spring: + application: + name: service-product + profiles: + active: dev