parent
f548bb7ce3
commit
06f5ed53e6
@ -0,0 +1,14 @@
|
||||
package au.com.royalpay.payment.manage.mappers.log;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.yixsoft.support.mybatis.autosql.annotations.AutoMapper;
|
||||
import com.yixsoft.support.mybatis.autosql.annotations.AutoSql;
|
||||
import com.yixsoft.support.mybatis.autosql.annotations.SqlType;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.executor.keygen.Jdbc3KeyGenerator;
|
||||
|
||||
@AutoMapper(tablename = "log_settle_customized", pkName = "log_id", keyGenerator = Jdbc3KeyGenerator.class)
|
||||
public interface CustomizedSettleLogMapper {
|
||||
@AutoSql(SqlType.SELECT)
|
||||
JSONObject find(@Param("log_id") int logId);
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package au.com.royalpay.payment.manage.valid;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.web.util.UriComponentsBuilder;
|
||||
|
||||
public class TestUri {
|
||||
@Test
|
||||
void test(){
|
||||
UriComponentsBuilder.fromHttpUrl("https://shop-1587029219413.rpaygroup.com/#/payment/result?url=https://shop-au.rpaygroup.com/geekforbest/v1/shop/payment/orders/9296a2ea-4f8f-4701-b9ae-e49718387417/transactions/d1878f49-2039-45ce-9458-667e6272d511");
|
||||
}
|
||||
}
|
Loading…
Reference in new issue