parent
87bae39ecc
commit
8579b406d3
@ -1,26 +0,0 @@
|
||||
package au.com.royalpay.payment.manage.mappers.openim;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import cn.yixblog.support.mybatis.autosql.annotations.AutoMapper;
|
||||
import cn.yixblog.support.mybatis.autosql.annotations.AutoSql;
|
||||
import cn.yixblog.support.mybatis.autosql.annotations.SqlType;
|
||||
|
||||
/**
|
||||
* Created by yixian on 2016-10-27.
|
||||
*/
|
||||
@AutoMapper(tablename = "sys_openim", pkName = "id")
|
||||
public interface OpenimMapper {
|
||||
@AutoSql(type = SqlType.SELECT)
|
||||
JSONObject findOne(@Param("user_id") String user_id);
|
||||
@AutoSql(type = SqlType.SELECT)
|
||||
JSONObject findByAccountId(@Param("account_id") String account_id,@Param("account_type") String account_type);
|
||||
|
||||
@AutoSql(type = SqlType.UPDATE)
|
||||
void update(JSONObject member);
|
||||
|
||||
@AutoSql(type = SqlType.INSERT)
|
||||
void save(JSONObject member);
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
package au.com.royalpay.payment.manage.openim.beans;
|
||||
|
||||
/**
|
||||
* @author kira
|
||||
* @date 2018/7/17
|
||||
*/
|
||||
public class OpenimUserVO {
|
||||
private String nick;
|
||||
private String userid;
|
||||
|
||||
public String getNick() {
|
||||
return nick;
|
||||
}
|
||||
|
||||
public void setNick(String nick) {
|
||||
this.nick = nick;
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue