feat(wms): 添加检化验申请单功能模块

- 创建检化验申请单实体类 WmsInspectionApplication
- 定义检化验申请单服务接口 IWmsInspectionApplicationService
- 实现检化验申请单服务业务逻辑 WmsInspectionApplicationServiceImpl
- 添加检化验申请单控制器 WmsInspectionApplicationController
- 创建检化验申请单数据访问层 WmsInspectionApplicationMapper
- 设计检化验申请单业务对象 WmsInspectionApplicationBo 和视图对象 WmsInspectionApplicationVo
- 配置检化验申请单 MyBatis 映射文件
- 实现检化验申请单的增删改查功能
- 添加检化验申请单列表查询和导出功能
This commit is contained in:
2026-07-08 10:25:41 +08:00
parent af7b73d29c
commit f0a74c1e1c
8 changed files with 812 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?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.klp.mapper.WmsInspectionApplicationMapper">
<resultMap type="com.klp.domain.WmsInspectionApplication" id="WmsInspectionApplicationResult">
<result property="applicationId" column="application_id"/>
<result property="applicationNo" column="application_no"/>
<result property="applicationTitle" column="application_title"/>
<result property="productionLine" column="production_line"/>
<result property="experimentType" column="experiment_type"/>
<result property="sampleName" column="sample_name"/>
<result property="sampleBatchNo" column="sample_batch_no"/>
<result property="sampleSource" column="sample_source"/>
<result property="sampleQuantity" column="sample_quantity"/>
<result property="testPurpose" column="test_purpose"/>
<result property="requiredDate" column="required_date"/>
<result property="flowStatus" column="flow_status"/>
<result property="submitTime" column="submit_time"/>
<result property="approveBy" column="approve_by"/>
<result property="approveTime" column="approve_time"/>
<result property="approveOpinion" column="approve_opinion"/>
<result property="rejectReason" column="reject_reason"/>
<result property="mainId" column="main_id"/>
<result property="detailIds" column="detail_ids"/>
<result property="experimentOperator" column="experiment_operator"/>
<result property="experimentStartTime" column="experiment_start_time"/>
<result property="experimentEndTime" column="experiment_end_time"/>
<result property="resultSummary" column="result_summary"/>
<result property="resultFiller" column="result_filler"/>
<result property="resultFillTime" column="result_fill_time"/>
<result property="delFlag" column="del_flag"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="remark" column="remark"/>
</resultMap>
</mapper>