Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
E
EIP-Integration
Project
Project
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
Graph
比较
统计图
议题
0
议题
0
列表
看板
标记
Milestones
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
李炎
EIP-Integration
Commits
5a605e8f
提交
5a605e8f
authored
8月 22, 2021
作者:
许俊
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改
上级
74dc332b
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
10 行增加
和
13 行删除
+10
-13
ProductionSchedulingPojoController.java
...I/controller/pojo/ProductionSchedulingPojoController.java
+3
-3
SalesOrderPojoController.java
...es/iost/API/controller/pojo/SalesOrderPojoController.java
+1
-1
SalesorderPojoMapper.xml
...modules/iost/API/mapper/pojo/xml/SalesorderPojoMapper.xml
+0
-0
ProductionSchedulingServiceImpl.java
...ost/API/service/impl/ProductionSchedulingServiceImpl.java
+3
-6
ProductionschedulingPojoService.java
...ost/API/service/pojo/ProductionschedulingPojoService.java
+1
-1
ProductionschedulingPojoServiceImpl.java
...ervice/pojo/impl/ProductionschedulingPojoServiceImpl.java
+2
-2
没有找到文件。
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/controller/pojo/ProductionSchedulingPojoController.java
浏览文件 @
5a605e8f
...
...
@@ -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.Productionscheduling
Pojo
Service
;
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
Productionscheduling
Service
productionscheduling
Service
;
Productionscheduling
PojoService
productionschedulingPojo
Service
;
@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
=
productionscheduling
Pojo
Service
.
page
(
page
,
queryWrapper
);
return
Result
.
OK
(
pageList
);
}
}
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/controller/pojo/SalesOrder
Service
PojoController.java
→
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/controller/pojo/SalesOrderPojoController.java
浏览文件 @
5a605e8f
...
...
@@ -23,7 +23,7 @@ import javax.servlet.http.HttpServletRequest;
@RestController
@RequestMapping
(
"/API/salesorderPojolist"
)
@Slf4j
public
class
SalesOrder
Service
PojoController
{
public
class
SalesOrderPojoController
{
@Autowired
SalesorderPojoService
salesorderPojoService
;
...
...
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/mapper/pojo/xml/Salesorder.xml
→
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/mapper/pojo/xml/Salesorder
PojoMapper
.xml
浏览文件 @
5a605e8f
File moved
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/service/impl/ProductionSchedulingServiceImpl.java
浏览文件 @
5a605e8f
...
...
@@ -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
Productionscheduling
Service
productionscheduling
Service
;
Productionscheduling
PojoService
productionschedulingPojo
Service
;
@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
);
productionscheduling
Pojo
Service
.
save
(
s
);
}
...
...
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/service/pojo/ProductionschedulingService.java
→
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/service/pojo/Productionscheduling
Pojo
Service.java
浏览文件 @
5a605e8f
...
...
@@ -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
Productionscheduling
Pojo
Service
extends
IService
<
Productionscheduling
>
{
}
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/service/pojo/impl/ProductionschedulingServiceImpl.java
→
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/API/service/pojo/impl/Productionscheduling
Pojo
ServiceImpl.java
浏览文件 @
5a605e8f
...
...
@@ -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.Productionscheduling
Pojo
Service
;
import
org.springframework.stereotype.Service
;
@Service
public
class
Productionscheduling
ServiceImpl
extends
ServiceImpl
<
ProductionschedulingPojoMapper
,
Productionscheduling
>
implements
Productionscheduling
Service
{
public
class
Productionscheduling
PojoServiceImpl
extends
ServiceImpl
<
ProductionschedulingPojoMapper
,
Productionscheduling
>
implements
ProductionschedulingPojo
Service
{
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论