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
{
///
/// 起运港代码
///
public string PortLoadCode { get; set; }
///
/// 船代代码
///
public string ForwarderCode { get; set; }
///
/// 模块(公用时为空字符串)
///
public string Module { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}