日志记录
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package me.zhengjie.mybatis.entity;
|
||||
package cn.ysk.cashier.mybatis.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package me.zhengjie.mybatis.entity;
|
||||
package cn.ysk.cashier.mybatis.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
|
||||
@@ -13,13 +13,10 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package me.zhengjie.mybatis.mapper;
|
||||
package cn.ysk.cashier.mybatis.mapper;
|
||||
|
||||
import cn.ysk.cashier.pojo.shop.TbMerchantAccount;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import me.zhengjie.modules.shopInfo.merchantAccount.domain.TbMerchantAccount;
|
||||
import me.zhengjie.mybatis.entity.TbUserStorage;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
||||
|
||||
/**
|
||||
* @website https://eladmin.vip
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
package me.zhengjie.mybatis.mapper;
|
||||
package cn.ysk.cashier.mybatis.mapper;
|
||||
|
||||
import cn.ysk.cashier.pojo.product.TbProductSku;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import me.zhengjie.modules.productInfo.product.domain.TbProduct;
|
||||
import me.zhengjie.modules.productInfo.productSku.domain.TbProductSku;
|
||||
|
||||
public interface TbProducSkutMapper extends BaseMapper<TbProductSku> {
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
package me.zhengjie.mybatis.mapper;
|
||||
package cn.ysk.cashier.mybatis.mapper;
|
||||
|
||||
import cn.ysk.cashier.pojo.product.TbProduct;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import me.zhengjie.modules.productInfo.product.domain.TbProduct;
|
||||
import me.zhengjie.mybatis.entity.TbUserStorage;
|
||||
|
||||
public interface TbProductMapper extends BaseMapper<TbProduct> {
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package me.zhengjie.mybatis.mapper;
|
||||
package cn.ysk.cashier.mybatis.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import me.zhengjie.mybatis.entity.TbUserStorage;
|
||||
import cn.ysk.cashier.mybatis.entity.TbUserStorage;
|
||||
|
||||
public interface TbUserStorageMapper extends BaseMapper<TbUserStorage> {
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package me.zhengjie.mybatis.rest;
|
||||
package cn.ysk.cashier.mybatis.rest;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import me.zhengjie.annotation.Log;
|
||||
import me.zhengjie.mybatis.entity.StorageVo;
|
||||
import me.zhengjie.mybatis.service.ShopService;
|
||||
import me.zhengjie.utils.SecurityUtils;
|
||||
import cn.ysk.cashier.annotation.Log;
|
||||
import cn.ysk.cashier.mybatis.entity.StorageVo;
|
||||
import cn.ysk.cashier.mybatis.service.ShopService;
|
||||
import cn.ysk.cashier.utils.SecurityUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.http.HttpStatus;
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package me.zhengjie.mybatis.service;
|
||||
package cn.ysk.cashier.mybatis.service;
|
||||
|
||||
import me.zhengjie.mybatis.entity.StorageVo;
|
||||
import cn.ysk.cashier.mybatis.entity.StorageVo;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
||||
/**
|
||||
|
||||
@@ -13,22 +13,21 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package me.zhengjie.mybatis.service.impl;
|
||||
package cn.ysk.cashier.mybatis.service.impl;
|
||||
|
||||
import cn.ysk.cashier.pojo.shop.TbMerchantAccount;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import me.zhengjie.exception.NewBadRequestException;
|
||||
import me.zhengjie.modules.productInfo.productSku.domain.TbProductSku;
|
||||
import me.zhengjie.modules.shopInfo.merchantAccount.domain.TbMerchantAccount;
|
||||
import me.zhengjie.mybatis.entity.StorageVo;
|
||||
import me.zhengjie.mybatis.entity.TbUserStorage;
|
||||
import me.zhengjie.mybatis.mapper.TbMerchantAccountMapper;
|
||||
import me.zhengjie.mybatis.mapper.TbProducSkutMapper;
|
||||
import me.zhengjie.mybatis.mapper.TbProductMapper;
|
||||
import me.zhengjie.mybatis.mapper.TbUserStorageMapper;
|
||||
import me.zhengjie.mybatis.service.ShopService;
|
||||
import me.zhengjie.utils.*;
|
||||
import cn.ysk.cashier.exception.NewBadRequestException;
|
||||
import cn.ysk.cashier.mybatis.entity.StorageVo;
|
||||
import cn.ysk.cashier.mybatis.entity.TbUserStorage;
|
||||
import cn.ysk.cashier.mybatis.mapper.TbMerchantAccountMapper;
|
||||
import cn.ysk.cashier.mybatis.mapper.TbProducSkutMapper;
|
||||
import cn.ysk.cashier.mybatis.mapper.TbProductMapper;
|
||||
import cn.ysk.cashier.mybatis.mapper.TbUserStorageMapper;
|
||||
import cn.ysk.cashier.mybatis.service.ShopService;
|
||||
import cn.ysk.cashier.utils.*;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
||||
Reference in New Issue
Block a user