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