ChouBox/ChouBox.Model/Entities/Delivery.cs
2025-04-23 19:20:23 +08:00

23 lines
412 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 快递公司
/// </summary>
public partial class Delivery
{
public ushort Id { get; set; }
/// <summary>
/// 快递公司
/// </summary>
public string Name { get; set; } = null!;
/// <summary>
/// 快递编码
/// </summary>
public string Code { get; set; } = null!;
}