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.

119 lines
4.0 KiB
C#

using DS.Module.Core.Data;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
/// <summary>
/// 业务场站入货通知信息
/// </summary>
[SqlSugar.SugarTable("op_business_yard", "业务场站入货通知信息")]
public class BusinessYard : BaseModel<long>
{
/// <summary>
/// 业务Id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false)]
public long BusinessId { get; set; }
/// <summary>
/// 通知人
/// </summary>
[SugarColumn(ColumnDescription = "通知人", IsNullable = true, Length = 60)]
public string ToName { get; set; }
/// <summary>
/// 联系人
/// </summary>
[SugarColumn(ColumnDescription = "联系人", IsNullable = true, Length = 30)]
public string ToAttn { get; set; }
/// <summary>
/// ATTN电话
/// </summary>
[SugarColumn(ColumnDescription = "ATTN电话", IsNullable = true, Length = 30)]
public string ToAttnTel { get; set; }
/// <summary>
/// ATTN手机号
/// </summary>
[SugarColumn(ColumnDescription = "ATTN手机号", IsNullable = true, Length = 30)]
public string ToAttnMobile { get; set; }
/// <summary>
/// ATTN邮箱
/// </summary>
[SugarColumn(ColumnDescription = "ATTN邮箱", IsNullable = true, Length = 30)]
public string ToAttnEmail { get; set; }
/// <summary>
/// 通知人
/// </summary>
[SugarColumn(ColumnDescription = "通知人", IsNullable = true, Length = 60)]
public string FromName { get; set; }
/// <summary>
/// FROM电话
/// </summary>
[SugarColumn(ColumnDescription = "FROM电话", IsNullable = true, Length = 100)]
public string FromTel { get; set; }
/// <summary>
/// FROM手机号
/// </summary>
[SugarColumn(ColumnDescription = "FROM手机号", IsNullable = true, Length = 100)]
public string FromMobile { get; set; }
/// <summary>
/// FROM邮箱
/// </summary>
[SugarColumn(ColumnDescription = "FROM邮箱", IsNullable = true, Length = 100)]
public string FromEmail { get; set; }
/// <summary>
/// 提箱场站
/// </summary>
[SugarColumn(ColumnDescription = "YardId", IsNullable = true)]
public long? YardId { get; set; }
/// <summary>
/// 提箱场站名称
/// </summary>
[SugarColumn(ColumnDescription = "提箱场站名称", Length = 60, IsNullable = true)]
public string Yard { get; set; }
/// <summary>
/// 电话
/// </summary>
[SugarColumn(ColumnDescription = "电话", IsNullable = true, Length = 100)]
public string YardTel { get; set; }
/// <summary>
/// 提箱联系人
/// </summary>
[SugarColumn(ColumnDescription = "提箱联系人")]
public long YardAttn { get; set; }
/// <summary>
/// 截港日期
/// </summary>
[SugarColumn(ColumnDescription = "截港日期", IsNullable = true)]
public DateTime? ClosingDate { get; set; }
/// <summary>
/// 截单日期
/// </summary>
[SugarColumn(ColumnDescription = "截单日期", IsNullable = true)]
public DateTime CloseDocDate { get; set; }
/// <summary>
/// 截VGM日期
/// </summary>
[SugarColumn(ColumnDescription = "截VGM日期", IsNullable = true)]
public DateTime CloseVGMDate { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Remark { get; set; }
}
}