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
{
///
///
///
[SugarTable("booking_auto_yard_import")]
[Description("场站自动引入信息")]
public class BookingAutoYardImport
{
///
/// 主键
///
[SugarColumn(ColumnDescription = "Id主键", IsPrimaryKey = true)] //通过特性设置主键和自增列
public long Id { get; set; }
///
/// 状态:引入成功、比对失败
///
public string Status { get; set; }
///
/// 比对结果内容
///
public string Content { get; set; }
///
/// 创建时间
///
public DateTime? CreatedTime { get; set; }
///
/// 场站数据JSON
///
public string YardJson { get; set; }
///
/// 比对数据时填写的箱信息JSON
///
public string CtnJson { get; set; }
///
/// 只读标志
///
public bool IsRead { get; set; }
///
/// 读取时间
///
public DateTime? ReadTime { get; set; }
///
/// 读取人
///
public string ReadUser { get; set; }
}
}