feat: 智聪记账管理,新增股票日行情、期货日行情功能。
This commit is contained in:
@@ -26,6 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="listingDate" column="listing_date" />
|
||||
<result property="tsCode" column="ts_code" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectFutureBaseInforVo">
|
||||
@@ -48,6 +49,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
a.del_flag,
|
||||
a.remark,
|
||||
a.listing_date,
|
||||
a.ts_code,
|
||||
ie."name" as exchange_name,
|
||||
ifsi."name" as standard_name,
|
||||
ifsi.trading_time
|
||||
@@ -95,6 +97,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="listingDate != null">listing_date,</if>
|
||||
<if test="tsCode != null">ts_code,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">#{id},</if>
|
||||
@@ -115,6 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="listingDate != null">#{listingDate},</if>
|
||||
<if test="tsCode != null">#{tsCode},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
@@ -138,6 +142,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="listingDate != null">listing_date = #{listingDate},</if>
|
||||
<if test="tsCode != null">ts_code = #{tsCode},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
Reference in New Issue
Block a user