|
@@ -5,16 +5,20 @@
|
|
|
<!-- 通用查询映射结果 -->
|
|
|
<resultMap id="BaseResultMap" type="com.management.platform.entity.ProdProcedure">
|
|
|
<id column="id" property="id" />
|
|
|
- <result column="prod_id" property="prodId" />
|
|
|
- <result column="procedure_id" property="procedureId" />
|
|
|
- <result column="proced_type" property="procedType" />
|
|
|
- <result column="price" property="price" />
|
|
|
+ <result column="name" property="name" />
|
|
|
+ <result column="company_id" property="companyId" />
|
|
|
+ <result column="product_id" property="productId" />
|
|
|
+ <result column="unit_price" property="unitPrice" />
|
|
|
<result column="check_type" property="checkType" />
|
|
|
+ <result column="working_time" property="workingTime" />
|
|
|
+ <result column="version_number" property="versionNumber" />
|
|
|
+ <result column="product_name" property="productName" />
|
|
|
+ <result column="seq" property="seq" />
|
|
|
</resultMap>
|
|
|
|
|
|
<!-- 通用查询结果列 -->
|
|
|
<sql id="Base_Column_List">
|
|
|
- id, prod_id, procedure_id, proced_type, price, check_type
|
|
|
+ id, name, company_id, product_id, unit_price, check_type, working_time, version_number, product_name, seq
|
|
|
</sql>
|
|
|
|
|
|
</mapper>
|