liurunyu
3 天以前 dc3a3b4993c8a205a7932328d149bd7cfc94cf06
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SePaymentMethodMapper.java
New file
@@ -0,0 +1,33 @@
package com.dy.pipIrrGlobal.daoSe;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoSe.SePaymentMethod;
import java.util.List;
/**
 * @author :WuZeYu
 * @Date :2024/6/27  15:00
 * @LastEditTime :2024/6/27  15:00
 * @Description
 */
public interface SePaymentMethodMapper extends BaseMapper<SePaymentMethod> {
    int deleteByPrimaryKey(Long id);
    int insert(SePaymentMethod record);
    int insertSelective(SePaymentMethod record);
    SePaymentMethod selectByPrimaryKey(Long id);
    int updateByPrimaryKeySelective(SePaymentMethod record);
    int updateByPrimaryKey(SePaymentMethod record);
    /**
     * 获取全部未删除付款方式
     *
     * @return 未删除付款方式
     */
    List<SePaymentMethod> getPaymentMethods();
}