|
@@ -9,6 +9,7 @@
|
|
|
<result column="company_name" property="companyName" jdbcType="VARCHAR"/>
|
|
|
<result column="phone" property="phone" jdbcType="VARCHAR"/>
|
|
|
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
|
|
|
+ <result column="report_time" property="reportTime" jdbcType="VARCHAR"/>
|
|
|
<result column="pdf_url" property="pdfUrl" jdbcType="VARCHAR"/>
|
|
|
<result column="query_month" property="queryMonth" jdbcType="VARCHAR"/>
|
|
|
</resultMap>
|
|
@@ -28,7 +29,7 @@
|
|
|
|
|
|
<select id="aiList" resultMap="BaseResultMap">
|
|
|
SELECT
|
|
|
- id, company_name, phone, create_time, query_month, usedCount,leftCount,pdf_url
|
|
|
+ id, company_name, phone, create_time, query_month, usedCount,leftCount,pdf_url,DATE_FORMAT(create_time, '%Y-%m-%d %H:%i:%s') AS report_time
|
|
|
FROM business_analysis_record
|
|
|
<where>
|
|
|
<if test="dto.companyName != null">
|