提现申请审核
This commit is contained in:
@@ -74,7 +74,7 @@ public class CashOut implements Serializable {
|
||||
private String orderNumber;
|
||||
|
||||
/**
|
||||
* 状态 0待转账 1成功 -1退款 2失败
|
||||
* 状态 0待转账 1成功 -1退款 2失败 3-待人工审核
|
||||
*/
|
||||
private Integer state;
|
||||
|
||||
@@ -107,4 +107,9 @@ public class CashOut implements Serializable {
|
||||
@TableField(exist = false)
|
||||
private String sysUserName;
|
||||
|
||||
/**
|
||||
* 是否同意提现 0不同意 1同意
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private Integer isAgree;
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@ import com.sqx.modules.utils.excel.ExcelData;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface CashOutService {
|
||||
|
||||
@@ -49,4 +50,13 @@ public interface CashOutService {
|
||||
*/
|
||||
Result withdraw(Long userId, Double money, String msg, boolean isSys);
|
||||
|
||||
/**
|
||||
* 提现审核分页查询
|
||||
*
|
||||
* @param params
|
||||
* @return
|
||||
*/
|
||||
PageUtils auditPage(Map<String, Object> params);
|
||||
|
||||
void audit(CashOut cashOut);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user