Files
metaloop/target/classes/main/resources/mapper/BizEnterpriseProductMapper.xml
T
2026-09-11 17:34:14 +08:00

33 lines
1.5 KiB
XML

<?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.metalloop.modules.bussiness.mapper.BizEnterpriseProductMapper">
<resultMap id="BaseResultMap" type="com.metalloop.modules.bussiness.model.po.BizEnterpriseProduct">
<!--@mbg.generated-->
<!--@Table biz_enterprise_product-->
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="enterprise_id" jdbcType="BIGINT" property="enterpriseId"/>
<result column="variety_id" jdbcType="BIGINT" property="varietyId"/>
<result column="material_id" jdbcType="BIGINT" property="materialId"/>
<result column="unit_price" jdbcType="DECIMAL" property="unitPrice"/>
<result column="weight" jdbcType="DECIMAL" property="weight"/>
<result column="status" jdbcType="TINYINT" property="status"/>
<result column="remark" jdbcType="VARCHAR" property="remark"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
<!--@Table biz_enterprise_product-->
id,
enterprise_id,
variety_id,
material_id,
unit_price,
weight,
status,
remark,
create_time,
update_time
</sql>
</mapper>