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.
|
|
|
|
using Myshipping.Core;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
[Tenant(CommonConst.MasterDb)]
|
|
|
|
|
[SugarTable("service_status_booking_sync_his")]
|
|
|
|
|
[Description("用来记录旧服务状态同步日志")]
|
|
|
|
|
public class ServiceStatusBookingSyncHisInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务状态原ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "服务状态原ID", IsPrimaryKey = true)]
|
|
|
|
|
public long ORG_STATUS_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MBL_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string STATUS_SKU_CODE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string STATUS_SKU_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 显示顺序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int SORT_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 完成时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime FINISH_TIME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 完成人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long FINISH_USER_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 完成人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string FINISH_USER_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租户ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long TENANT_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租户ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long BOOKING_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态 SUCC-成功 FAILURE-失败
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string STATUS { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 同步完成时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime SYNC_TIME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 同步结果
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SYNC_RESULT { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|