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.
66 lines
2.2 KiB
C#
66 lines
2.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_letter", "函电信息主表")]
|
|
public class OpLetter : BaseOrgModel<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 业务编号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "业务编号", IsNullable = false, Length = 100)]
|
|
public string BSNO { get; set; }
|
|
/// <summary>
|
|
/// 通知人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "通知人", IsNullable = true, Length = 60)]
|
|
public string HeadTo { get; set; }
|
|
/// <summary>
|
|
/// 联系人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "联系人", IsNullable = true, Length = 30)]
|
|
public string HeadATTN { get; set; }
|
|
/// <summary>
|
|
/// 函电名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "函电名称", IsNullable = true, Length = 100)]
|
|
public string LetterName { get; set; }
|
|
/// <summary>
|
|
/// ATTN电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ATTN电话", IsNullable = true, Length = 30)]
|
|
public string HeadATTNTel { get; set; }
|
|
/// <summary>
|
|
/// ATTN传真
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ATTN传真", IsNullable = true, Length = 30)]
|
|
public string HeadATTNFax { get; set; }
|
|
|
|
/// <summary>
|
|
/// FROM电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "summary", IsNullable = true, Length = 100)]
|
|
public string HeadFromTel { get; set; }
|
|
/// <summary>
|
|
/// FROM传真
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "FROM传真", IsNullable = true, Length = 100)]
|
|
public string HeadFromFax { get; set; }
|
|
/// <summary>
|
|
/// FROM邮箱
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "FROM邮箱", IsNullable = true, Length = 100)]
|
|
public string HeadFromEmail { get; set; }
|
|
}
|
|
}
|