You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB
C#

11 months ago
using Common.Utilities;
using djy.Model.Afr;
using djy.Model.AFRDto;
using djy.Model.AmsDto;
11 months ago
using System.Collections.Generic;
using System.Threading.Tasks;
namespace djy.IService.Afr
{
public interface IAfrService
{
11 months ago
#region 字典接口
List<CommonCNEN> GetCountry(string strlink, int page, int limit);
List<CommonMappiCode> GetCARRIER();
11 months ago
List<CommonMappiCode> GetCTNALL();
List<CommonMappiCode> GetPackage();
11 months ago
List<CodeDangerGradeDto> GetDangerousGoods(string strlink);
List<CommonCodeValue> GetPort(string strlink, int page, int limit);
List<CommonCodeValue> GetVessel(string strlink, int page, int limit);
#endregion
Task<PageModel<AFRMaster>> Load(AFRMasterInputDto input);
11 months ago
Task<AFRMaster> Get(string gid);
11 months ago
Task<AFRMaster> SaveInfo(AFRMaster input);
11 months ago
Task Delete(string ids);
11 months ago
Task<string> Send(string ids, string hids, int sendType);
11 months ago
Task SaveReceipt(AFRReceiptDto input);
11 months ago
Task<List<AFRMasterHistory>> GetHistory(string mid, string hid);
11 months ago
}
}