using DS.Module.Core; using DS.Module.Core.Data; using DS.WMS.Core.Fee.Entity; using DS.WMS.Core.Op.Entity; namespace DS.WMS.Core.Fee.Interface { /// /// 往来单位费用模板 /// public interface IFeeCustTemplateService { /// /// 根据业务ID与类型生成费用 /// /// 业务ID /// 业务类型 /// Task GenerateFeesAsync(long bsId, BusinessType businessType = BusinessType.OceanShippingExport); /// /// 列表 /// /// /// Task>> GetListAsync(PageRequest request); /// /// 详情 /// /// /// Task> GetAsync(long id); /// /// 编辑 /// /// /// Task EditAsync(FeeCustTemplate model); /// /// 根据ID批量删除 /// /// /// Task DeleteAsync(IdModel model); } }