新增场景产品等级 料号颜色解析
This commit is contained in:
24
ym-packing/src/main/resources/mapper/ProductLevelMapper.xml
Normal file
24
ym-packing/src/main/resources/mapper/ProductLevelMapper.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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.cnbm.packing.mapper.ProductLevelMapper">
|
||||
<resultMap type="com.cnbm.packing.entity.ProductLevel" id="ProductLevelMap">
|
||||
<id column="id" property="id" />
|
||||
<id column="product_name" property="productName" />
|
||||
<id column="product_level" property="productLevel" />
|
||||
<id column="remark" property="remark" />
|
||||
<id column="valid" property="valid" />
|
||||
<id column="creator_id" property="creatorId" />
|
||||
<id column="creator_name" property="creatorName" />
|
||||
<id column="create_time" property="createTime" />
|
||||
<id column="updater_id" property="updaterId" />
|
||||
<id column="updater_name" property="updaterName" />
|
||||
<id column="update_time" property="updateTime" />
|
||||
<id column="version" property="version" />
|
||||
</resultMap>
|
||||
|
||||
<select id="list" resultType="com.cnbm.packing.dto.ProductLevelDTO">
|
||||
select * from t_product_level
|
||||
order by id asc
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
23
ym-packing/src/main/resources/mapper/ScenesMapper.xml
Normal file
23
ym-packing/src/main/resources/mapper/ScenesMapper.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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.cnbm.packing.mapper.ScenesMapper">
|
||||
<resultMap type="com.cnbm.packing.entity.Scenes" id="ScenesMap">
|
||||
<id column="id" property="id" />
|
||||
<id column="scenes_name" property="scenesName" />
|
||||
<id column="remark" property="remark" />
|
||||
<id column="valid" property="valid" />
|
||||
<id column="creator_id" property="creatorId" />
|
||||
<id column="creator_name" property="creatorName" />
|
||||
<id column="create_time" property="createTime" />
|
||||
<id column="updater_id" property="updaterId" />
|
||||
<id column="updater_name" property="updaterName" />
|
||||
<id column="update_time" property="updateTime" />
|
||||
<id column="version" property="version" />
|
||||
</resultMap>
|
||||
|
||||
<select id="list" resultType="com.cnbm.packing.dto.ScenesDTO">
|
||||
select * from t_scenes
|
||||
order by id asc
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
@@ -6,7 +6,7 @@
|
||||
<id column="actl_pmpp_low" property="actlPmppLow" />
|
||||
<id column="actl_pmpp_high" property="actlPmppHigh" />
|
||||
<id column="formula" property="formula" />
|
||||
<id column="line_body" prope】/rty="lineBody" />
|
||||
<id column="line_body" property="lineBody" />
|
||||
<id column="coefficient_a" property="coefficientA" />
|
||||
<id column="coefficient_b" property="coefficientB" />
|
||||
<id column="remark" property="remark" />
|
||||
|
||||
Reference in New Issue
Block a user