+ * 仓库表 前端控制器 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +@RestController +@RequestMapping("/system/ware") +public class WareController { + +} + diff --git a/service/service-sys/src/main/java/com/atguigu/ssyx/sys/mapper/RegionMapper.java b/service/service-sys/src/main/java/com/atguigu/ssyx/sys/mapper/RegionMapper.java new file mode 100644 index 0000000..ffb7879 --- /dev/null +++ b/service/service-sys/src/main/java/com/atguigu/ssyx/sys/mapper/RegionMapper.java @@ -0,0 +1,16 @@ +package com.atguigu.ssyx.sys.mapper; + +import com.atguigu.ssyx.model.sys.Region; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *+ * 地区表 Mapper 接口 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +public interface RegionMapper extends BaseMapper+ * 城市仓库关联表 Mapper 接口 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +public interface RegionWareMapper extends BaseMapper+ * 仓库表 Mapper 接口 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +public interface WareMapper extends BaseMapper+ * 地区表 服务类 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +public interface RegionService extends IService+ * 仓库表 服务类 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +public interface WareService extends IService+ * 地区表 服务实现类 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +@Service +public class RegionServiceImpl extends ServiceImpl+ * 仓库表 服务实现类 + *
+ * + * @author atguigu + * @since 2024-04-02 + */ +@Service +public class WareServiceImpl extends ServiceImpl