using Myshipping.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
#region 公共
///
/// 查询操作信息输入
///
public class BookingAutoQueryInput
{
///
/// 查询类型
///
public BookingAutoQueryType QueryType { get; set; }
///
/// 查询代码
///
public string QueryCode { get; set; }
///
/// 租户ID
///
public long TenantId { get; set; }
///
/// 大简云公司ID
///
public string CompId { get; set; }
}
public enum BookingAutoQueryType
{
///
/// 订舱编号
///
BookingNO,
///
/// 提单号
///
MBLNO,
///
/// 名称
///
Name,
}
#endregion
#region 查询操作信息
///
/// 查询操作信息输出
///
public class BookingAutoQueryOpOutput
{
///
/// 姓名
///
public string Name { get; set; }
///
/// 英文名
///
public string EnName { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// 手机
///
public string Phone { get; set; }
///
/// 电话
///
public string Tel { get; set; }
///
/// 大简云userid
///
public string DjyUserId { get; set; }
}
#endregion
#region 更新订舱
///
/// 更新订舱数据输入
///
public class BookingAutoUpdateDataInput : BookingAutoQueryInput
{
///
/// 数据对象
///
public dynamic DataJson { get; set; }
}
#endregion
}