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.

101 lines
2.6 KiB
C#

using Furion.DatabaseAccessor;
using Furion.DistributedIDGenerator;
using Myshipping.Application.Entity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DAJYun.Core.Entities
{
/// <summary>
/// 记录任务下货纸比对结果
/// </summary>
[SugarTable("task_shipping_order_compare")]
[Description("记录任务下货纸比对结果")]
public class TaskShippingOrderCompareInfo : TaskManageDbEntity
{
/// <summary>
/// 任务主键(父主键)
/// </summary>
public string TASK_PKID { get; set; }
/// <summary>
/// 主单号
/// </summary>
public string MBL_NO { get; set; }
/// <summary>
/// 船名
/// </summary>
public string VESSEL_NAME { get; set; }
/// <summary>
/// 航次号
/// </summary>
public string VOYAGE_NO { get; set; }
/// <summary>
/// 调取运踪状态 NONE-没有记录 ALL-所有记录 PART-部分记录 EXCEPT-异常
/// </summary>
public string TRANS_TRACK_STATUS { get; set; }
/// <summary>
/// 推送客户消息类型 NONE-无消息EMAIL-邮件提醒INTIME-及时消息
/// </summary>
public string NOTIFY_CLIENT_WAY { get; set; }
/// <summary>
/// 推送客户消息状态 NONE-未推送SUCC-发送成功FAILURE-发送失败EXCEPT-异常
/// </summary>
public string NOTIFY_CLIENT_STATUS { get; set; }
/// <summary>
/// 箱型箱量
/// </summary>
public string CONTA_INFO { get; set; }
/// <summary>
/// 状态 TEMP-暂存COMPARE_DIFF-比对有差异COMPARE_EQUAL-比对一致EXCEPT-比对异常
/// </summary>
public string STATUS { get; set; }
/// <summary>
/// 请求系统
/// </summary>
public string REQ_SENDER_CODE { get; set; }
/// <summary>
/// 请求系统名称
/// </summary>
public string REQ_SENDER_NAME { get; set; }
/// <summary>
/// 请求系统业务单号
/// </summary>
public string REQ_BUSI_NO { get; set; }
/// <summary>
/// 请求流水号
/// </summary>
public string FLOW_NO { get; set; }
/// <summary>
/// 比对结果
/// </summary>
public string COMPARE_RESULT { get; set; }
}
}