shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.iplatform.pay.service;
 
import com.iplatform.model.po.S_pay_definition;
import com.walker.jdbc.service.BaseServiceImpl;
import org.springframework.stereotype.Service;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
@Service
public class PayDefinitionServiceImpl extends BaseServiceImpl {
 
    /**
     * 返回有效的支付定义集合。禁用的不要
     * @return
     * @date 2023-02-28
     */
    public List<S_pay_definition> queryAvailablePayDefinitionList(){
        return this.select(new S_pay_definition(), "where enabled=1", new HashMap<String, Object>());
    }
}