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.

69 lines
1.4 KiB
C#

3 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using djy.Model;
using Common;
3 years ago
using djy.Model.AmsDto;
3 years ago
using Common.Utilities;
3 years ago
using djy.Model.Ams;
2 years ago
using djy.IService.Djy;
using Common.DJYModel;
3 years ago
2 years ago
namespace djy.IService.Ams
3 years ago
{
/// <summary>
3 years ago
/// AMS
3 years ago
/// </summary>
public interface IAmsService:IsBase
{
2 years ago
2 years ago
string SaveInfo(AMSDto dto, User user);
2 years ago
2 years ago
TableData Load(AMSQuery req, User user,UserAuthorityDto aut);
3 years ago
2 years ago
void Delete(string ids, User user);
3 years ago
2 years ago
List<CommonCNEN> GetCountry();
3 years ago
2 years ago
List<CommonCodeValue> GetCodePortLoad();
3 years ago
2 years ago
List<CommonMappiCode> GetCARRIER();
3 years ago
List<CommonCodeValue> GetCTNALL();
2 years ago
List<CommonCodeValue> GetPackage();
3 years ago
2 years ago
List<CodeDangerGradeDto> GetDangerousGoods(string strlink);
3 years ago
2 years ago
List<CommonCodeValue> GetPort(string strlink);
3 years ago
2 years ago
List<CommonCodeValue> GetVessel(string strlink);
3 years ago
2 years ago
2 years ago
Task<Response> SendDE(string Gid, User user, string docType,string hid);
2 years ago
Response SaveReceipt(string retdto);
2 years ago
2 years ago
List<CommonCodeValue> GetCodeProvince(string code);
2 years ago
List<CodeCityDto> GetCodeCity(string provinceCode);
2 years ago
2 years ago
string SaveTemplate(AMS_AddrTemplate dto, User user);
2 years ago
2 years ago
List<AMS_AddrTemplate> GetTemplate(User user, string type,string TemPlateName);
2 years ago
void DeleteTemplate(string ids);
2 years ago
byte[] PDF(string ids);
2 years ago
3 years ago
}
3 years ago
}