Files
StopShopping/StopShopping.EF/Models/Logistic.cs
2026-03-25 14:55:34 +08:00

56 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace StopShopping.EF.Models;
/// <summary>
/// 物流
/// </summary>
public partial class Logistic
{
/// <summary>
/// 主键
/// </summary>
public int Id { get; set; }
/// <summary>
/// 快递单号
/// </summary>
public string OrderNo { get; set; } = null!;
/// <summary>
/// 快递公司
/// </summary>
public string Company { get; set; } = null!;
/// <summary>
/// 物流状态1-揽收0-在途5-派件6-退回4-退签3-签收2-疑难7-转投8。。。-清关
/// </summary>
public short Status { get; set; }
/// <summary>
/// 到达时间
/// </summary>
public DateTime ArrivalTime { get; set; }
/// <summary>
/// 到达地点
/// </summary>
public string Location { get; set; } = null!;
/// <summary>
/// 详情
/// </summary>
public string Context { get; set; } = null!;
/// <summary>
/// 需求id
/// </summary>
public int RequestId { get; set; }
/// <summary>
/// 入库时间
/// </summary>
public DateTime CreateTime { get; set; }
}