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.

55 lines
1.1 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 Common.Djy;
3 years ago
using djy.Model.AmsDto;
3 years ago
using Common.Utilities;
3 years ago
using djy.Model.Ams;
3 years ago
namespace djy.Paas.IService
{
/// <summary>
3 years ago
/// AMS
3 years ago
/// </summary>
public interface IAmsService:IsBase
{
3 years ago
/// <summary>
3 years ago
/// 新增/编辑
3 years ago
/// </summary>
/// <param name="dto"></param>
/// <param name="userid"></param>
3 years ago
string SaveInfo(AMSDto dto,string userid);
3 years ago
/// <summary>
/// 查询
/// </summary>
/// <param name="req"></param>
/// <param name="userid"></param>
/// <returns></returns>
TableData Load(AMSQuery req, string userid);
3 years ago
3 years ago
3 years ago
void Delete(string ids,string userid);
3 years ago
List<CommonCodeValue> GetCountry();
3 years ago
List<CommonCodeValue> GetCARRIER();
List<CommonCodeValue> GetCTNALL();
List<CommonCodeValue> GetKINDPKGS();
List<AMS_SysDangerousGoods> GetDangerousGoods();
3 years ago
3 years ago
void SendDE(string Gid, string userid);
3 years ago
}
3 years ago
}