no message

This commit is contained in:
18188916393
2022-07-27 16:58:56 +08:00
parent e41c6140f6
commit 0e3eb2c3ae
8 changed files with 22 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
package org.nl.wms.bigscreen.product.rest;
package org.nl.wms.ext.bigScreen.rest;
import io.swagger.annotations.Api;
@@ -7,7 +7,8 @@ import io.swagger.annotations.ApiOperation;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.nl.annotation.Log;
import org.nl.wms.bigscreen.product.service.ProductService;
import org.nl.wms.ext.bigScreen.service.ProductService;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;

View File

@@ -1,9 +1,10 @@
package org.nl.wms.bigscreen.product.service;
package org.nl.wms.ext.bigScreen.service;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.RequestBody;
import java.util.Map;
@Service
public interface ProductService {
/**

View File

@@ -1,4 +1,4 @@
package org.nl.wms.bigscreen.product.service.impl;
package org.nl.wms.ext.bigScreen.service.impl;
import cn.hutool.core.date.DateTime;
import cn.hutool.core.date.DateUtil;
@@ -6,7 +6,7 @@ import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.nl.wms.bigscreen.product.service.ProductService;
import org.nl.wms.ext.bigScreen.service.ProductService;
import org.nl.wql.WQL;
import org.springframework.stereotype.Service;