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.
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船司场站对应关系
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("booking_carrier_yard_relation")]
|
|
|
|
|
[Description("船司场站对应关系")]
|
|
|
|
|
public class BookingCarrierYardRelation : DBEntityTenant
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 场站代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("场站代码")]
|
|
|
|
|
public string YardCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 场站
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("场站")]
|
|
|
|
|
public string Yard { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船司代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("船司代码")]
|
|
|
|
|
public string CarrierCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船司
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("船司")]
|
|
|
|
|
public string Carrier { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|