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.
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务装船通知回执与提单草单内容对比
|
|
/// </summary>
|
|
[SugarTable("task_si_draft_compare")]
|
|
[Description("任务装船通知回执与提单草单内容对比")]
|
|
public class TaskSIDraftCompareInfo : TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 任务主键(父主键)
|
|
/// </summary>
|
|
public string TASK_PKID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段代码
|
|
/// </summary>
|
|
public string FIELD_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段名称
|
|
/// </summary>
|
|
public string FIELD_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装船通知内容
|
|
/// </summary>
|
|
public string SI_CONTENT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提单草单内容
|
|
/// </summary>
|
|
public string DRAFT_CONTENT { get; set; }
|
|
}
|
|
}
|