123456789101112131415161718192021 |
- <?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.ym.mec.biz.dal.dao.TenantProductInfoDao">
- <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.TenantProductInfo">
- <id column="id_" jdbcType="INTEGER" property="id" />
- <result column="tenant_id_" jdbcType="INTEGER" property="tenantId" />
- <result column="serve_id_" jdbcType="INTEGER" property="serveId" />
- <result column="serve_detail_id_" jdbcType="INTEGER" property="serveDetailId" />
- <result column="original_price_" jdbcType="DECIMAL" property="originalPrice" />
- <result column="contract_price_" jdbcType="DECIMAL" property="contractPrice" />
- <result column="pay_amount_" jdbcType="DECIMAL" property="payAmount" />
- <result column="expiry_count_" jdbcType="INTEGER" property="expiryCount" />
- <result column="expiry_unit_" jdbcType="VARCHAR" property="expiryUnit" />
- <result column="expiry_data_" jdbcType="DATE" property="expiryDate" />
- </resultMap>
- <sql id="Base_Column_List">
- id_, tenant_id_, serve_id_, serve_detail_id_, original_price_, contract_price_, pay_amount_,
- expiry_count_, expiry_unit_, expiry_data_
- </sql>
- </mapper>
|