MallBizPaymentDao.java 565 Bytes
package com.diligrp.cashier.mall.dao;

import com.diligrp.cashier.mall.model.MallBizPayment;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;

/**
 * MallBizPaymentDao
 *
 * @author dengwei
 */
public interface MallBizPaymentDao extends MybatisMapperSupport {
    int deleteByPrimaryKey(Long id);

    int insert(MallBizPayment record);

    int insertSelective(MallBizPayment record);

    MallBizPayment selectByPrimaryKey(Long id);

    int updateByPrimaryKeySelective(MallBizPayment record);

    int updateByPrimaryKey(MallBizPayment record);
}