Examples of FanDao


Examples of com.skyline.user.dao.FanDao

  @Override
  public List<Fan> queryFansByOwerIdTimestamp(long owerId, Date timestamp, Activity activity) {
    List<Invitation> result = this.queryInvitationByOwerId(owerId, timestamp, activity);
    List<Fan> fans = new ArrayList<Fan>();
    FanDao fanDao = new FanDaoImpl();
    List<Fan> tempFans = fanDao.queryFansByIdolId(owerId, null, activity);

    for (Invitation in : result) {
      long fanId = in.getFanId();
      for (Fan fan : tempFans) {
        if (fan.getFanId() == fanId) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.