FeedbackManager.java 732 Bytes
package com.diligrp.mobsite.man.manager;

import com.diligrp.mobsite.man.domain.Feedback;
import com.diligrp.website.util.dao.BaseQuery;
import com.diligrp.website.util.web.PageTemplate;

/**
 * <B>Description</B>  <br />
 * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
 * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
 * <B>Company</B> 地利集团
 * @createTime 2014-9-24 16:53:43
 * @author template
 */
public interface FeedbackManager {

    public PageTemplate find(BaseQuery bq);

    public Feedback findOne(Long pk);

    public Boolean save(Feedback feedback);

    public Boolean update(Feedback feedback);

    public Boolean del(Long id);

}