|
@@ -5,14 +5,14 @@
|
|
<mapper namespace="com.jpsoft.picc.modules.base.dao.InsuranceJobsDAO">
|
|
<mapper namespace="com.jpsoft.picc.modules.base.dao.InsuranceJobsDAO">
|
|
<resultMap id="InsuranceJobsMap" type="com.jpsoft.picc.modules.base.entity.InsuranceJobs">
|
|
<resultMap id="InsuranceJobsMap" type="com.jpsoft.picc.modules.base.entity.InsuranceJobs">
|
|
<id property="id" column="id_" />
|
|
<id property="id" column="id_" />
|
|
- <result property="jobsId" column="jobs_id" />
|
|
|
|
- <result property="definitionId" column="definition_id" />
|
|
|
|
<result property="charges" column="charges_" />
|
|
<result property="charges" column="charges_" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="updateTime" column="update_time" />
|
|
|
|
+ <association property="definition" column="definition_id" select="com.jpsoft.picc.modules.base.dao.InsuranceDefinitionDAO.get"></association>
|
|
|
|
+ <association property="jobs" column="jobs_id" select="com.jpsoft.picc.modules.base.dao.JobsDAO.get"></association>
|
|
</resultMap>
|
|
</resultMap>
|
|
<insert id="insert" parameterType="com.jpsoft.picc.modules.base.entity.InsuranceJobs">
|
|
<insert id="insert" parameterType="com.jpsoft.picc.modules.base.entity.InsuranceJobs">
|
|
<!--
|
|
<!--
|