package com.xzx.gc.pay.mapper;
|
|
import com.xzx.gc.entity.PartnerAccountLog;
|
import com.xzx.gc.model.admin.PartnerAccountLogModel;
|
import com.xzx.gc.util.GcMapper;
|
|
public interface PartnerAccountLogMapper extends GcMapper<PartnerAccountLog> {
|
|
int addPartnerAccountLog(PartnerAccountLogModel log);
|
|
int updateParterAccountLog(PartnerAccountLogModel model);
|
|
|
}
|