MallBizPaymentDao.java
514 Bytes
package com.diligrp.cashier.mall.dao;
import com.diligrp.cashier.mall.model.MallBizPayment;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;
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);
}