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.
BookingHeChuan/Myshipping.Core/Entity/CommonDB/RelaPortLoadForwarder.cs

36 lines
849 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Entity
{
[SugarTable("RelaPortLoadForwarder")]
[Description("起运港和船代的关系表")]
public class RelaPortLoadForwarder : CommonDbEntity
{
/// <summary>
/// 起运港代码
/// </summary>
public string PortLoadCode { get; set; }
/// <summary>
/// 船代代码
/// </summary>
public string ForwarderCode { get; set; }
/// <summary>
/// 模块(公用时为空字符串)
/// </summary>
public string Module { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
}
}