ComplianceServer/oldcode/IBLL/QH/IQH_COMMISSIONAPPLY.cs

15 lines
402 B
C#

using System;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.QH
{
public interface IQH_COMMISSIONAPPLY
{
void Insert(QH_COMMISSIONAPPLY model);
void Update(QH_COMMISSIONAPPLY model);
void Audit(QH_COMMISSIONAPPLY model);
void genCommissionRoule(string tradeCode, DateTime thdate, string companyCode);
void Delete(QH_COMMISSIONAPPLY model);
}
}