完善表结构
This commit is contained in:
parent
47f0262a25
commit
53b66a63d0
@ -0,0 +1,22 @@
|
||||
package com.yovinchen.xlcs.acl.controller;
|
||||
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 角色权限 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-24
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/admin/acl/rolePermission")
|
||||
@Api(tags = "用户权限")
|
||||
public class RolePermissionController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,17 @@
|
||||
package com.yovinchen.xlcs.acl.mapper;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.acl.AdminLoginLog;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 后台用户登录日志表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-24
|
||||
*/
|
||||
public interface AdminLoginLogMapper extends BaseMapper<AdminLoginLog> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.acl.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.acl.AdminLoginLog;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 后台用户登录日志表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-24
|
||||
*/
|
||||
public interface AdminLoginLogService extends IService<AdminLoginLog> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.acl.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.acl.RolePermission;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 角色权限 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-24
|
||||
*/
|
||||
public interface RolePermissionService extends IService<RolePermission> {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.acl.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.acl.mapper.AdminLoginLogMapper;
|
||||
import com.yovinchen.xlcs.acl.service.AdminLoginLogService;
|
||||
import com.yovinchen.xlcs.model.acl.AdminLoginLog;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 后台用户登录日志表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-24
|
||||
*/
|
||||
@Service
|
||||
public class AdminLoginLogServiceImpl extends ServiceImpl<AdminLoginLogMapper, AdminLoginLog> implements AdminLoginLogService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.acl.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.acl.mapper.RolePermissionMapper;
|
||||
import com.yovinchen.xlcs.acl.service.RolePermissionService;
|
||||
import com.yovinchen.xlcs.model.acl.RolePermission;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 角色权限 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-24
|
||||
*/
|
||||
@Service
|
||||
public class RolePermissionServiceImpl extends ServiceImpl<RolePermissionMapper, RolePermission> implements RolePermissionService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 仓库表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/driver")
|
||||
public class DriverController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长账户 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/leader-account")
|
||||
public class LeaderAccountController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长银行卡表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/leader-bank")
|
||||
public class LeaderBankController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 交易账单表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/leader-bill")
|
||||
public class LeaderBillController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,35 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import com.yovinchen.xlcs.common.result.Result;
|
||||
import com.yovinchen.xlcs.vo.order.OrderQueryVo;
|
||||
import com.yovinchen.xlcs.vo.user.LeaderVo;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("admin/user/leader")
|
||||
public class LeaderController {
|
||||
// admin/user/leader/checkList/${page}/${limit}
|
||||
// getPageCheckList
|
||||
@ApiOperation(value = "获取页面列表")
|
||||
@GetMapping("getPageCheckList/${page}/${limit}")
|
||||
public Result<LeaderVo> getPageCheckList(@ApiParam(name = "page", value = "当前页码", required = true) @PathVariable Long page, @ApiParam(name = "limit", value = "每页记录数", required = true) @PathVariable Long limit, @ApiParam(name = "OrderQueryVo", value = "查询对象", required = false) OrderQueryVo orderQueryVo) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长会员关系表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/leader-user")
|
||||
public class LeaderUserController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 地区表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/region")
|
||||
public class RegionController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 会员提货记录表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/user-delivery")
|
||||
public class UserDeliveryController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 用户登陆记录表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user/user-login-log")
|
||||
public class UserLoginLogController {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.yovinchen.xlcs.user.mapper;
|
||||
|
||||
//import com.yovinchen.xlcs.model.user.Driver;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.user.Driver;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 仓库表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface DriverMapper extends BaseMapper<Driver> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.user.LeaderAccount;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长账户 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderAccountMapper extends BaseMapper<LeaderAccount> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.user.LeaderBank;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长银行卡表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderBankMapper extends BaseMapper<LeaderBank> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.user.LeaderBill;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 交易账单表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderBillMapper extends BaseMapper<LeaderBill> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.user.LeaderUser;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长会员关系表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderUserMapper extends BaseMapper<LeaderUser> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.sys.Region;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 地区表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface RegionMapper extends BaseMapper<Region> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yovinchen.xlcs.model.user.UserLoginLog;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 用户登陆记录表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface UserLoginLogMapper extends BaseMapper<UserLoginLog> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.Driver;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 仓库表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface DriverService extends IService<Driver> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.LeaderAccount;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长账户 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderAccountService extends IService<LeaderAccount> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.LeaderBank;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长银行卡表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderBankService extends IService<LeaderBank> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.LeaderBill;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 交易账单表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderBillService extends IService<LeaderBill> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.Leader;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderService extends IService<Leader> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.LeaderUser;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长会员关系表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface LeaderUserService extends IService<LeaderUser> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.sys.Region;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 地区表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface RegionService extends IService<Region> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.UserDelivery;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 会员提货记录表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface UserDeliveryService extends IService<UserDelivery> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.yovinchen.xlcs.user.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.yovinchen.xlcs.model.user.UserLoginLog;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 用户登陆记录表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
public interface UserLoginLogService extends IService<UserLoginLog> {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.Driver;
|
||||
import com.yovinchen.xlcs.user.mapper.DriverMapper;
|
||||
import com.yovinchen.xlcs.user.service.DriverService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 仓库表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class DriverServiceImpl extends ServiceImpl<DriverMapper, Driver> implements DriverService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.LeaderAccount;
|
||||
import com.yovinchen.xlcs.user.mapper.LeaderAccountMapper;
|
||||
import com.yovinchen.xlcs.user.service.LeaderAccountService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长账户 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class LeaderAccountServiceImpl extends ServiceImpl<LeaderAccountMapper, LeaderAccount> implements LeaderAccountService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.LeaderBank;
|
||||
import com.yovinchen.xlcs.user.mapper.LeaderBankMapper;
|
||||
import com.yovinchen.xlcs.user.service.LeaderBankService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长银行卡表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class LeaderBankServiceImpl extends ServiceImpl<LeaderBankMapper, LeaderBank> implements LeaderBankService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.LeaderBill;
|
||||
import com.yovinchen.xlcs.user.mapper.LeaderBillMapper;
|
||||
import com.yovinchen.xlcs.user.service.LeaderBillService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 交易账单表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class LeaderBillServiceImpl extends ServiceImpl<LeaderBillMapper, LeaderBill> implements LeaderBillService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.Leader;
|
||||
import com.yovinchen.xlcs.user.mapper.LeaderMapper;
|
||||
import com.yovinchen.xlcs.user.service.LeaderService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class LeaderServiceImpl extends ServiceImpl<LeaderMapper, Leader> implements LeaderService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.LeaderUser;
|
||||
import com.yovinchen.xlcs.user.mapper.LeaderUserMapper;
|
||||
import com.yovinchen.xlcs.user.service.LeaderUserService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 团长会员关系表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class LeaderUserServiceImpl extends ServiceImpl<LeaderUserMapper, LeaderUser> implements LeaderUserService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.sys.Region;
|
||||
import com.yovinchen.xlcs.user.mapper.RegionMapper;
|
||||
import com.yovinchen.xlcs.user.service.RegionService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 地区表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class RegionServiceImpl extends ServiceImpl<RegionMapper, Region> implements RegionService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.UserDelivery;
|
||||
import com.yovinchen.xlcs.user.mapper.UserDeliveryMapper;
|
||||
import com.yovinchen.xlcs.user.service.UserDeliveryService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 会员提货记录表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class UserDeliveryServiceImpl extends ServiceImpl<UserDeliveryMapper, UserDelivery> implements UserDeliveryService {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.yovinchen.xlcs.user.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.yovinchen.xlcs.model.user.UserLoginLog;
|
||||
import com.yovinchen.xlcs.user.mapper.UserLoginLogMapper;
|
||||
import com.yovinchen.xlcs.user.service.UserLoginLogService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 用户登陆记录表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author yovinchen
|
||||
* @since 2024-01-30
|
||||
*/
|
||||
@Service
|
||||
public class UserLoginLogServiceImpl extends ServiceImpl<UserLoginLogMapper, UserLoginLog> implements UserLoginLogService {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user