首页>代码>java高仿Twitter聊天推文微博网站>/twitter/src/com/twitter/dao/ConcernDao.java
package com.twitter.dao;

import java.sql.Timestamp;
import java.util.List;

import com.twitter.pojo.Concern;
import com.twitter.util.DBUtil;

public class ConcernDao {
	public List<Concern> getSuid(int f_uid) {
		String sql = "select cid,f_uid,s_uid,cstate from concern where f_uid=? ";
		List<Concern> list = DBUtil.query(Concern.class, sql, f_uid);
		if (list.size() > 0) {
			return list;
		}
		return null;
	}

	public List<Concern> getFuid(int s_uid) {
		String sql = "select cid,f_uid,s_uid,cstate from concern where s_uid=? ";
		List<Concern> list = DBUtil.query(Concern.class, sql, s_uid);
		if (list.size() > 0) {
			return list;
		}
		return null;
	}

	public int hasFollow(int f_uid, int s_uid) {
		String sql = "select cid,f_uid,s_uid,cstate from concern where f_uid=? and s_uid=? limit 1";
		List<Concern> list = DBUtil.query(Concern.class, sql, f_uid, s_uid);
		if (list.size() > 0) {
			return 1;
		}
		return 0;
	}

	public int addFollow(int f_uid, String s_uid, int mode, Timestamp ctime) {
		String sql = "insert into concern(f_uid,s_uid,cstate,ctime) values(?,?,?,?)";
		int n = DBUtil.update(sql, f_uid, s_uid, mode, ctime);
		return n;
	}

	public int delFollow(int f_uid, String s_uid) {
		String sql = "delete from concern where f_uid=? and s_uid=? limit 1";
		int n = DBUtil.update(sql, f_uid, s_uid);
		return n;
	}

	public int updateFollow(String f_uid, int s_uid, int cstate) {
		String sql = "update concern set cstate=? where f_uid=? and s_uid=?";
		int n = DBUtil.update(sql, cstate, f_uid, s_uid);
		return n;
	}
}
最近下载更多
tiancj  LV1 11月14日
goccgoccgocc  LV4 5月9日
微信网友_6768521601667072  LV1 2023年12月7日
拜托你仔细听  LV3 2023年9月21日
hyy1362  LV1 2023年7月5日
罗清晨  LV13 2023年6月20日
543539666  LV7 2023年6月19日
qq3577025766  LV6 2022年4月24日
ababc1  LV1 2022年4月3日
ChangKong  LV1 2021年8月19日
最近浏览更多
tiancj  LV1 11月12日
张泽帅  LV6 10月18日
Iterman  LV2 8月23日
Bill_Xiong 5月24日
暂无贡献等级
goccgoccgocc  LV4 5月9日
3334004690  LV10 3月20日
Gin19960217  LV4 1月15日
微信网友_6768521601667072  LV1 2023年12月7日
lasttimeapp 2023年11月27日
暂无贡献等级
ncyhhh  LV2 2023年11月26日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友