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.
chat-room/wechat-master/src/com/hyc/wechat/dao/SQLMapper.java

22 lines
459 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//t
package com.hyc.wechat.dao;
/**
* @program XHotel
* @description 用于将属性映射成sql预编译语句
*/
public interface SQLMapper {
/**
* 用于将一个或多个参数映射成预编译sql语句
*
* @param params 可变参数允许传递多个映射sql语句所需的源数据
* @return 返回映射之后的预编译sql语句
* @name doMap
* @notice none
*/
String doMap(Object... params);
}