You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.4 KiB
31 lines
1.4 KiB
package com.hai.dao;
|
|
|
|
import com.hai.entity.OutRechargeChildOrder;
|
|
import org.apache.ibatis.annotations.Result;
|
|
import org.apache.ibatis.annotations.Results;
|
|
import org.apache.ibatis.annotations.Select;
|
|
import org.apache.ibatis.type.JdbcType;
|
|
|
|
/**
|
|
* mapper扩展类
|
|
*/
|
|
public interface OutRechargeChildOrderMapperExt {
|
|
|
|
@Select({
|
|
"select * from out_recharge_child_order order by id desc limit 1;"
|
|
})
|
|
@Results({
|
|
@Result(column="id", property="id", jdbcType= JdbcType.BIGINT, id=true),
|
|
@Result(column="parent_order_id", property="parentOrderId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="recharge_platform", property="rechargePlatform", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR)
|
|
})
|
|
OutRechargeChildOrder findOutRechargeChildOrderByDesc();
|
|
|
|
}
|
|
|