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.

39 lines
1.2 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_sea_export_remark", "海运出口备注")]
public class SeaExportRemark : BaseModel<long>
{
/// <summary>
/// 业务Id
/// </summary>
[SugarColumn(ColumnDescription = "业务Id", IsNullable = false)]
public long Pid { get; set; }
/// <summary>
/// 备注类型
/// </summary>
[SugarColumn(ColumnDescription = "备注类型", IsNullable = true, Length =100)]
public string RemarkType { get; set; }
/// <summary>
/// 备注类型名称
/// </summary>
[SugarColumn(ColumnDescription = "备注类型名称", IsNullable = true, Length = 100)]
public string RemarkTypeName { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Remark { get; set; }
}
}