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.
ds8-solution-pro/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportShippingBillTempla...

71 lines
2.5 KiB
C#

using DS.Module.Core;
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_shippingbill_template", "海运出口舱单收发通模板")]
public class SeaExportShippingBillTemplate : BaseModel<long>
{
/// <summary>
/// 模板名称
/// </summary>
[SugarColumn(ColumnDescription = "模板名称", IsNullable = true, Length = 50)]
public string TemplateName { get; set; }
/// <summary>
/// 名称
/// </summary>
[SugarColumn(ColumnDescription = "名称", IsNullable = true, Length = 50)]
public string Name { get; set; }
/// <summary>
/// 地址
/// </summary>
[SugarColumn(ColumnDescription = "地址", IsNullable = true, Length = 100)]
public string Address { get; set; }
/// <summary>
/// 国家code
/// </summary>
[SugarColumn(ColumnDescription = "国家code", IsNullable = true, Length = 50)]
public string Country { get; set; }
/// <summary>
/// 国家
/// </summary>
[SugarColumn(ColumnDescription = "国家", IsNullable = true, Length = 50)]
public string CountryName { get; set; }
/// <summary>
/// 电话
/// </summary>
[SugarColumn(ColumnDescription = "电话", IsNullable = true, Length = 50)]
public string Tel { get; set; }
/// <summary>
/// 邮箱
/// </summary>
[SugarColumn(ColumnDescription = "邮箱", IsNullable = true, Length = 100)]
public string Email { get; set; }
/// <summary>
/// 模板内容
/// </summary>
[SugarColumn(ColumnDescription = "模板内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Content { get; set; }
/// <summary>
/// 类型 1 收 2 发 3 通
/// </summary>
[SugarColumn(ColumnDescription = "类型 1 收 2 发 3 通", IsNullable = false, Length = 10)]
public string Type { get; set; }
/// <summary>
/// 状态 0启用 1禁用
/// </summary>
[SugarColumn(ColumnDescription = "状态", DefaultValue = "0")]
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
}
}