日志-面试修改时间信息
This commit is contained in:
@@ -3,6 +3,8 @@ package com.cool.store.mapper;
|
||||
import com.cool.store.entity.HyPartnerTaskInfoLogDO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @date 2023-05-29 03:53
|
||||
@@ -22,4 +24,6 @@ public interface HyPartnerTaskInfoLogMapper {
|
||||
* dateTime:2023-05-29 03:53
|
||||
*/
|
||||
int updateByPrimaryKeySelective(@Param("record") HyPartnerTaskInfoLogDO record);
|
||||
|
||||
List<HyPartnerTaskInfoLogDO> selectByPartnerLineIdAndOperateType(@Param("partnerLineId") String partnerLineId, @Param("operateType") String operateType);
|
||||
}
|
||||
@@ -133,4 +133,13 @@
|
||||
</set>
|
||||
where id = #{record.id}
|
||||
</update>
|
||||
<select id="selectByPartnerLineIdAndOperateType" resultMap="ResultMapWithBLOBs">
|
||||
select
|
||||
<include refid="Base_Column_List"/>,
|
||||
<include refid="Blob_Column_List"/>
|
||||
from hy_partner_task_info_log
|
||||
where partner_line_id = #{partnerLineId}
|
||||
and operate_type = #{operateType}
|
||||
order by create_time desc
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user