提交 5a605e8f authored 作者: 许俊's avatar 许俊

修改

上级 74dc332b
......@@ -10,7 +10,7 @@ import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.query.QueryGenerator;
import org.jeecg.modules.iost.API.entity.pojo.Productionscheduling;
import org.jeecg.modules.iost.API.service.pojo.ProductionschedulingService;
import org.jeecg.modules.iost.API.service.pojo.ProductionschedulingPojoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
......@@ -25,7 +25,7 @@ import javax.servlet.http.HttpServletRequest;
@Slf4j
public class ProductionSchedulingPojoController {
@Autowired
ProductionschedulingService productionschedulingService;
ProductionschedulingPojoService productionschedulingPojoService;
@AutoLog(value = "排产计划明细信息接口-分页列表查询")
@ApiOperation(value = "排产计划明细信息接口-分页列表查询", notes = "排产计划明细信息接口-分页列表查询")
......@@ -37,7 +37,7 @@ public class ProductionSchedulingPojoController {
QueryWrapper<Productionscheduling> queryWrapper = QueryGenerator.initQueryWrapper(productinventory, req.getParameterMap());
Page<Productionscheduling> page = new Page<Productionscheduling>(pageNo, pageSize);
IPage<Productionscheduling> pageList = productionschedulingService.page(page, queryWrapper);
IPage<Productionscheduling> pageList = productionschedulingPojoService.page(page, queryWrapper);
return Result.OK(pageList);
}
}
......@@ -23,7 +23,7 @@ import javax.servlet.http.HttpServletRequest;
@RestController
@RequestMapping("/API/salesorderPojolist")
@Slf4j
public class SalesOrderServicePojoController {
public class SalesOrderPojoController {
@Autowired
SalesorderPojoService salesorderPojoService;
......
......@@ -4,15 +4,12 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import lombok.extern.slf4j.Slf4j;
import net.sf.json.JSONObject;
import org.jeecg.modules.iost.API.Util.JsonUtil;
import org.jeecg.modules.iost.API.entity.Materialinventoryerror;
import org.jeecg.modules.iost.API.entity.pojo.Productionscheduling;
import org.jeecg.modules.iost.API.mapper.ProductionSchedulingMapper;
import org.jeecg.modules.iost.API.ExternalInterface.ProductionSchedulingApi;
import org.jeecg.modules.iost.API.entity.Productionschedulingerror;
import org.jeecg.modules.iost.API.mapper.pojo.ProductionschedulingPojoMapper;
import org.jeecg.modules.iost.API.service.IProductionSchedulingService;
import org.jeecg.modules.iost.API.service.pojo.ProductionOrderPojoService;
import org.jeecg.modules.iost.API.service.pojo.ProductionschedulingService;
import org.jeecg.modules.iost.API.service.pojo.ProductionschedulingPojoService;
import org.jeecg.modules.iost.API.webapi.ProductionSchedulingWebapi;
import org.jeecg.modules.iost.API.webapi.Util.WebApiLog;
import org.springframework.beans.factory.annotation.Autowired;
......@@ -40,7 +37,7 @@ public class ProductionSchedulingServiceImpl extends ServiceImpl<ProductionSched
@Autowired
WebApiLog webApiLog;
@Autowired
ProductionschedulingService productionschedulingService;
ProductionschedulingPojoService productionschedulingPojoService;
@Override
public String add(Map<String, String> map) {
......@@ -79,7 +76,7 @@ public class ProductionSchedulingServiceImpl extends ServiceImpl<ProductionSched
public void pojosave(Map<String, String> stringStringMap) {
Productionscheduling s = new Productionscheduling();
s.setPurchaserhqcode("SGCC");
productionschedulingService.save(s);
productionschedulingPojoService.save(s);
}
......
......@@ -3,5 +3,5 @@ package org.jeecg.modules.iost.API.service.pojo;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.iost.API.entity.pojo.Productionscheduling;
public interface ProductionschedulingService extends IService<Productionscheduling> {
public interface ProductionschedulingPojoService extends IService<Productionscheduling> {
}
......@@ -3,9 +3,9 @@ package org.jeecg.modules.iost.API.service.pojo.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.iost.API.entity.pojo.Productionscheduling;
import org.jeecg.modules.iost.API.mapper.pojo.ProductionschedulingPojoMapper;
import org.jeecg.modules.iost.API.service.pojo.ProductionschedulingService;
import org.jeecg.modules.iost.API.service.pojo.ProductionschedulingPojoService;
import org.springframework.stereotype.Service;
@Service
public class ProductionschedulingServiceImpl extends ServiceImpl<ProductionschedulingPojoMapper, Productionscheduling> implements ProductionschedulingService {
public class ProductionschedulingPojoServiceImpl extends ServiceImpl<ProductionschedulingPojoMapper, Productionscheduling> implements ProductionschedulingPojoService {
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论