using Hotline.Share.Enums.Order;
using SqlSugar;
using XF.Domain.Repository;
namespace Hotline.OrderTranspond
{
public class TranspondCityRawData : CreationEntity
{
///
/// 工单编号
///
[SugarColumn(ColumnDescription = "工单编号")]
public string OrderCode { get; set; }
///
/// 转出/转入时间
///
[SugarColumn(ColumnDescription = "转出/转入时间 ")]
public DateTime? TransferOutTime { get; set; }
///
/// 推送次数
///
[SugarColumn(ColumnDescription = "推送次数")]
public int SendTimes { get; set; }
///
/// 推送成功
///
[SugarColumn(ColumnDescription = "推送成功")]
public bool? IsSuccess { get; set; }
///
/// 请求结果/转入数据
///
[SugarColumn(ColumnDataType = "text", ColumnDescription = "返回数据")]
public string? Result { get; set; }
///
/// 市州名称
///
[SugarColumn(ColumnDescription = "市州名称")]
public string? CityName { get; set; }
///
/// 转出或者转入
///
[SugarColumn(ColumnDescription = "转出或者转入")]
public ETranspondDirection Direction { get; set; }
///
/// 接收方工单编号
///
[SugarColumn(ColumnDescription = "接收方工单编号")]
public string? NewCode { get; set; }
///
/// 市州办理意见
///
[SugarColumn(ColumnDescription = "接收方工单编号")]
public string? ActualOpinion { get; set; }
}
}