Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HYH.APSJ
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
佟礼
HYH.APSJ
Commits
640bf25c
Commit
640bf25c
authored
Dec 08, 2025
by
DESKTOP-VKRD9QF\Administration
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工艺bom表
parent
ab812cf7
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
265 additions
and
0 deletions
+265
-0
RoutingSupportingReplace.java
src/main/java/com/aps/entity/RoutingSupportingReplace.java
+39
-0
Routingsupporting.java
src/main/java/com/aps/entity/Routingsupporting.java
+38
-0
RoutingSupportingReplaceMapper.java
...n/java/com/aps/mapper/RoutingSupportingReplaceMapper.java
+16
-0
RoutingsupportingMapper.java
src/main/java/com/aps/mapper/RoutingsupportingMapper.java
+16
-0
RoutingSupportingReplaceService.java
...java/com/aps/service/RoutingSupportingReplaceService.java
+16
-0
RoutingsupportingService.java
src/main/java/com/aps/service/RoutingsupportingService.java
+16
-0
RoutingSupportingReplaceServiceImpl.java
...aps/service/impl/RoutingSupportingReplaceServiceImpl.java
+20
-0
RoutingsupportingServiceImpl.java
...va/com/aps/service/impl/RoutingsupportingServiceImpl.java
+20
-0
RoutingSupportingReplaceMapper.xml
src/main/resources/mapper/RoutingSupportingReplaceMapper.xml
+42
-0
RoutingsupportingMapper.xml
src/main/resources/mapper/RoutingsupportingMapper.xml
+42
-0
No files found.
src/main/java/com/aps/entity/RoutingSupportingReplace.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
entity
;
import
lombok.Data
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
@Data
public
class
RoutingSupportingReplace
{
private
Long
id
;
private
LocalDateTime
creationtime
;
private
Long
creatoruserid
;
private
LocalDateTime
lastmodificationtime
;
private
Long
lastmodifieruserid
;
private
Long
isdeleted
;
private
LocalDateTime
deletiontime
;
private
Long
deleteruserid
;
private
String
sourcem
;
private
String
targetm
;
private
BigDecimal
count
;
private
BigDecimal
normalcount
;
private
String
bomallname
;
private
Long
supportingid
;
private
Long
measureunit
;
private
String
measureunitname
;
private
String
materialid
;
private
String
namematerial
;
private
String
targetmaterialid
;
private
String
materialtype
;
private
String
strsupid
;
private
Long
issupportingstore
;
private
Long
storeId
;
private
String
storeName
;
private
String
strId
;
private
String
ischange
;
private
BigDecimal
oldcount
;
private
BigDecimal
oldnormalcount
;
}
\ No newline at end of file
src/main/java/com/aps/entity/Routingsupporting.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
entity
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
@Data
public
class
Routingsupporting
{
private
Long
id
;
private
LocalDateTime
creationtime
;
private
Long
creatoruserid
;
private
LocalDateTime
lastmodificationtime
;
private
Long
lastmodifieruserid
;
private
Long
isdeleted
;
private
LocalDateTime
deletiontime
;
private
Long
deleteruserid
;
private
Long
routingHeaderId
;
private
Long
routingDetailId
;
private
String
materialId
;
private
String
materialType
;
private
String
materialNumber
;
private
String
materialName
;
private
String
materialVersion
;
private
String
remark
;
private
Long
storeId
;
private
String
storeName
;
private
BigDecimal
mainQty
;
private
BigDecimal
spentQty
;
private
String
strMainQty
;
private
String
strSpentQty
;
private
Long
mainMeasureUnit
;
private
String
mainMeasureUnitName
;
private
Long
spentMeasureUnit
;
private
String
spentMeasureUnitName
;
private
String
strId
;
private
String
drawNum
;
}
\ No newline at end of file
src/main/java/com/aps/mapper/RoutingSupportingReplaceMapper.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
mapper
;
import
com.aps.entity.RoutingSupportingReplace
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* 工艺bom替换件 Mapper 接口
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-08
*/
public
interface
RoutingSupportingReplaceMapper
extends
BaseMapper
<
RoutingSupportingReplace
>
{
}
src/main/java/com/aps/mapper/RoutingsupportingMapper.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
mapper
;
import
com.aps.entity.Routingsupporting
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* 工艺(BOM) Mapper 接口
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-08
*/
public
interface
RoutingsupportingMapper
extends
BaseMapper
<
Routingsupporting
>
{
}
src/main/java/com/aps/service/RoutingSupportingReplaceService.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
service
;
import
com.aps.entity.RoutingSupportingReplace
;
import
com.baomidou.mybatisplus.extension.service.IService
;
/**
* <p>
* 工艺bom替换件 服务类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-08
*/
public
interface
RoutingSupportingReplaceService
extends
IService
<
RoutingSupportingReplace
>
{
}
src/main/java/com/aps/service/RoutingsupportingService.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
service
;
import
com.aps.entity.Routingsupporting
;
import
com.baomidou.mybatisplus.extension.service.IService
;
/**
* <p>
* 工艺(BOM) 服务类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-08
*/
public
interface
RoutingsupportingService
extends
IService
<
Routingsupporting
>
{
}
src/main/java/com/aps/service/impl/RoutingSupportingReplaceServiceImpl.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
service
.
impl
;
import
com.aps.entity.RoutingSupportingReplace
;
import
com.aps.mapper.RoutingSupportingReplaceMapper
;
import
com.aps.service.RoutingSupportingReplaceService
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
org.springframework.stereotype.Service
;
/**
* <p>
* 工艺bom替换件 服务实现类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-08
*/
@Service
public
class
RoutingSupportingReplaceServiceImpl
extends
ServiceImpl
<
RoutingSupportingReplaceMapper
,
RoutingSupportingReplace
>
implements
RoutingSupportingReplaceService
{
}
src/main/java/com/aps/service/impl/RoutingsupportingServiceImpl.java
0 → 100644
View file @
640bf25c
package
com
.
aps
.
service
.
impl
;
import
com.aps.entity.Routingsupporting
;
import
com.aps.mapper.RoutingsupportingMapper
;
import
com.aps.service.RoutingsupportingService
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
org.springframework.stereotype.Service
;
/**
* <p>
* 工艺(BOM) 服务实现类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-08
*/
@Service
public
class
RoutingsupportingServiceImpl
extends
ServiceImpl
<
RoutingsupportingMapper
,
Routingsupporting
>
implements
RoutingsupportingService
{
}
src/main/resources/mapper/RoutingSupportingReplaceMapper.xml
0 → 100644
View file @
640bf25c
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.aps.mapper.RoutingSupportingReplaceMapper"
>
<!-- 通用查询映射结果 -->
<resultMap
id=
"BaseResultMap"
type=
"com.aps.entity.RoutingSupportingReplace"
>
<id
column=
"ID"
property=
"id"
/>
<result
column=
"CREATIONTIME"
property=
"creationtime"
/>
<result
column=
"CREATORUSERID"
property=
"creatoruserid"
/>
<result
column=
"LASTMODIFICATIONTIME"
property=
"lastmodificationtime"
/>
<result
column=
"LASTMODIFIERUSERID"
property=
"lastmodifieruserid"
/>
<result
column=
"ISDELETED"
property=
"isdeleted"
/>
<result
column=
"DELETIONTIME"
property=
"deletiontime"
/>
<result
column=
"DELETERUSERID"
property=
"deleteruserid"
/>
<result
column=
"SOURCEM"
property=
"sourcem"
/>
<result
column=
"TARGETM"
property=
"targetm"
/>
<result
column=
"COUNT"
property=
"count"
/>
<result
column=
"NORMALCOUNT"
property=
"normalcount"
/>
<result
column=
"BOMALLNAME"
property=
"bomallname"
/>
<result
column=
"SUPPORTINGID"
property=
"supportingid"
/>
<result
column=
"MEASUREUNIT"
property=
"measureunit"
/>
<result
column=
"MEASUREUNITNAME"
property=
"measureunitname"
/>
<result
column=
"MATERIALID"
property=
"materialid"
/>
<result
column=
"NAMEMATERIAL"
property=
"namematerial"
/>
<result
column=
"TARGETMATERIALID"
property=
"targetmaterialid"
/>
<result
column=
"MATERIALTYPE"
property=
"materialtype"
/>
<result
column=
"STRSUPID"
property=
"strsupid"
/>
<result
column=
"ISSUPPORTINGSTORE"
property=
"issupportingstore"
/>
<result
column=
"STORE_ID"
property=
"storeId"
/>
<result
column=
"STORE_NAME"
property=
"storeName"
/>
<result
column=
"STR_ID"
property=
"strId"
/>
<result
column=
"ISCHANGE"
property=
"ischange"
/>
<result
column=
"OLDCOUNT"
property=
"oldcount"
/>
<result
column=
"OLDNORMALCOUNT"
property=
"oldnormalcount"
/>
</resultMap>
<!-- 通用查询结果列 -->
<sql
id=
"Base_Column_List"
>
ID, CREATIONTIME, CREATORUSERID, LASTMODIFICATIONTIME, LASTMODIFIERUSERID, ISDELETED, DELETIONTIME, DELETERUSERID, SOURCEM, TARGETM, COUNT, NORMALCOUNT, BOMALLNAME, SUPPORTINGID, MEASUREUNIT, MEASUREUNITNAME, MATERIALID, NAMEMATERIAL, TARGETMATERIALID, MATERIALTYPE, STRSUPID, ISSUPPORTINGSTORE, STORE_ID, STORE_NAME, STR_ID, ISCHANGE, OLDCOUNT, OLDNORMALCOUNT
</sql>
</mapper>
src/main/resources/mapper/RoutingsupportingMapper.xml
0 → 100644
View file @
640bf25c
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.aps.mapper.RoutingsupportingMapper"
>
<!-- 通用查询映射结果 -->
<resultMap
id=
"BaseResultMap"
type=
"com.aps.entity.Routingsupporting"
>
<id
column=
"ID"
property=
"id"
/>
<result
column=
"CREATIONTIME"
property=
"creationtime"
/>
<result
column=
"CREATORUSERID"
property=
"creatoruserid"
/>
<result
column=
"LASTMODIFICATIONTIME"
property=
"lastmodificationtime"
/>
<result
column=
"LASTMODIFIERUSERID"
property=
"lastmodifieruserid"
/>
<result
column=
"ISDELETED"
property=
"isdeleted"
/>
<result
column=
"DELETIONTIME"
property=
"deletiontime"
/>
<result
column=
"DELETERUSERID"
property=
"deleteruserid"
/>
<result
column=
"ROUTING_HEADER_ID"
property=
"routingHeaderId"
/>
<result
column=
"ROUTING_DETAIL_ID"
property=
"routingDetailId"
/>
<result
column=
"MATERIAL_ID"
property=
"materialId"
/>
<result
column=
"MATERIAL_TYPE"
property=
"materialType"
/>
<result
column=
"MATERIAL_NUMBER"
property=
"materialNumber"
/>
<result
column=
"MATERIAL_NAME"
property=
"materialName"
/>
<result
column=
"MATERIAL_VERSION"
property=
"materialVersion"
/>
<result
column=
"REMARK"
property=
"remark"
/>
<result
column=
"STORE_ID"
property=
"storeId"
/>
<result
column=
"STORE_NAME"
property=
"storeName"
/>
<result
column=
"MAIN_QTY"
property=
"mainQty"
/>
<result
column=
"SPENT_QTY"
property=
"spentQty"
/>
<result
column=
"STR_MAIN_QTY"
property=
"strMainQty"
/>
<result
column=
"STR_SPENT_QTY"
property=
"strSpentQty"
/>
<result
column=
"MAIN_MEASURE_UNIT"
property=
"mainMeasureUnit"
/>
<result
column=
"MAIN_MEASURE_UNIT_NAME"
property=
"mainMeasureUnitName"
/>
<result
column=
"SPENT_MEASURE_UNIT"
property=
"spentMeasureUnit"
/>
<result
column=
"SPENT_MEASURE_UNIT_NAME"
property=
"spentMeasureUnitName"
/>
<result
column=
"STR_ID"
property=
"strId"
/>
<result
column=
"DRAW_NUM"
property=
"drawNum"
/>
</resultMap>
<!-- 通用查询结果列 -->
<sql
id=
"Base_Column_List"
>
ID, CREATIONTIME, CREATORUSERID, LASTMODIFICATIONTIME, LASTMODIFIERUSERID, ISDELETED, DELETIONTIME, DELETERUSERID, ROUTING_HEADER_ID, ROUTING_DETAIL_ID, MATERIAL_ID, MATERIAL_TYPE, MATERIAL_NUMBER, MATERIAL_NAME, MATERIAL_VERSION, REMARK, STORE_ID, STORE_NAME, MAIN_QTY, SPENT_QTY, STR_MAIN_QTY, STR_SPENT_QTY, MAIN_MEASURE_UNIT, MAIN_MEASURE_UNIT_NAME, SPENT_MEASURE_UNIT, SPENT_MEASURE_UNIT_NAME, STR_ID, DRAW_NUM
</sql>
</mapper>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment