|
@@ -17,7 +17,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="businessAddress" column="business_address" />
|
|
|
<result property="actualBod" column="actual_bod" />
|
|
|
<result property="phone" column="phone" />
|
|
|
- <result property="type" column="type" />
|
|
|
+ <result property="filingTime" column="filing_time" />
|
|
|
+ <result property="delFlag" column="del_flag" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
@@ -26,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTProjectCompanyVo">
|
|
|
- select id, company_name, project_pool_id, company_code, start_time, end_time, registered_capital, registered_address, paid_capital, business_address, actual_bod, phone, type, del_flag, create_by, create_time, update_by, update_time from t_project_company
|
|
|
+ select id, company_name, project_pool_id, company_code, start_time, end_time, registered_capital, registered_address, paid_capital, business_address, actual_bod, phone, type,filing_time, del_flag, create_by, create_time, update_by, update_time from t_project_company
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTProjectCompanyList" parameterType="TProjectCompany" resultMap="TProjectCompanyResult">
|
|
@@ -62,6 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="actualBod != null">actual_bod,</if>
|
|
|
<if test="phone != null">phone,</if>
|
|
|
<if test="type != null">type,</if>
|
|
|
+ <if test="filingTime != null">filing_time,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -82,6 +84,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="actualBod != null">#{actualBod},</if>
|
|
|
<if test="phone != null">#{phone},</if>
|
|
|
<if test="type != null">#{type},</if>
|
|
|
+ <if test="filingTime != null">#{filingTime},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -105,6 +108,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="actualBod != null">actual_bod = #{actualBod},</if>
|
|
|
<if test="phone != null">phone = #{phone},</if>
|
|
|
<if test="type != null">type = #{type},</if>
|
|
|
+ <if test="filingTime != null"> filing_time = #{filingTime},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|