admin
2019-05-16 4114e871bcb3dce771b6aed64a1027d0bbb95ca6
fanli/src/main/java/com/yeshi/fanli/service/inter/user/ExtractService.java
@@ -12,8 +12,6 @@
public interface ExtractService {
   public List<Extract> getExtractInfoByUid(long uid);
   /**
    * 提现申请
    * 
@@ -21,10 +19,8 @@
    * @return 返回如果为null,则提现申请提交成功。如果为1�?,已超过当日提现次数或提现金额!如果�?,提现金额大于我的红包!
    */
   public Integer addExtract(Extract extract);
   public List<Extract> getExtractList(int i);
   public int getCount();
//   public int getCount();
   /**
    * 通过
@@ -42,7 +38,7 @@
    * @throws ObjectStateException
    * @throws NotExistObjectException
    */
   public void rejectExtract(long id, String reason, long extractTime, AdminUser adminUser)
   public void rejectExtract(long id, String reason, AdminUser adminUser)
         throws ObjectStateException, NotExistObjectException;
   /**
@@ -61,7 +57,7 @@
    * @param uid
    * @return
    */
   public void checkExtract(String uid) throws ExtractException ;
   public void checkExtract(Long uid) throws ExtractException ;
   public Extract selectByPrimaryKey(Long id);
@@ -98,5 +94,7 @@
    * @return
    */
   public double countTodayMoney(Long uid);
}