gongchunyi
昨天 1729474b4c7ffacb1790bb70981e64e7744bffb2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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.ruoyi.purchase.mapper.SalesLedgerProductTemplateMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.purchase.pojo.SalesLedgerProductTemplate">
        <id column="id" property="id" />
        <result column="sales_ledger_id" property="salesLedgerId" />
        <result column="product_category" property="productCategory" />
        <result column="specification_model" property="specificationModel" />
        <result column="unit" property="unit" />
        <result column="quantity" property="quantity" />
        <result column="min_stock" property="minStock" />
        <result column="tax_rate" property="taxRate" />
        <result column="tax_inclusive_unit_price" property="taxInclusiveUnitPrice" />
        <result column="tax_inclusive_total_price" property="taxInclusiveTotalPrice" />
        <result column="tax_exclusive_total_price" property="taxExclusiveTotalPrice" />
        <result column="invoice_type" property="invoiceType" />
        <result column="type" property="type" />
        <result column="product_id" property="productId" />
        <result column="product_model_id" property="productModelId" />
        <result column="register" property="register" />
        <result column="register_date" property="registerDate" />
        <result column="warn_num" property="warnNum" />
        <result column="is_checked" property="isChecked" />
    </resultMap>
 
</mapper>