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.

100 lines
2.1 KiB
C#

using Myshipping.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 基础dto
/// </summary>
public class CarrierYardRelationDto
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// 场站代码
/// </summary>
public string YardCode { get; set; }
/// <summary>
/// 场站
/// </summary>
public string Yard { get; set; }
/// <summary>
/// 船司代码
/// </summary>
public string CarrierCode { get; set; }
/// <summary>
/// 船司
/// </summary>
public string Carrier { get; set; }
}
/// <summary>
/// 查询dto
/// </summary>
public class CarrierYardRelationQueryInput : PageInputBase
{
/// <summary>
/// 场站代码
/// </summary>
public string YardCode { get; set; }
/// <summary>
/// 场站
/// </summary>
public string Yard { get; set; }
/// <summary>
/// 船司代码
/// </summary>
public string CarrierCode { get; set; }
/// <summary>
/// 船司
/// </summary>
public string Carrier { get; set; }
}
/// <summary>
/// 保存dto
/// </summary>
public class CarrierYardRelationSaveInput : CarrierYardRelationDto
{
}
/// <summary>
/// 保存dto
/// </summary>
public class CarrierYardRelationSaveOutput : CarrierYardRelationDto
{
/// <summary>
/// 创建时间
/// </summary>
public virtual string CreatedTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public virtual string UpdatedTime { get; set; }
/// <summary>
/// 创建者名称
/// </summary>
public virtual string CreatedUserName { get; set; }
/// <summary>
/// 修改者名称
/// </summary>
public virtual string UpdatedUserName { get; set; }
}
}