You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Application/Entity/BookingSource.cs

30 lines
719 B
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
///
/// </summary>
[SugarTable("booking_source")]
[Description("箱信息")]
public class BookingSource : DBEntityTenant
{
/// <summary>
/// 代码
/// </summary>
[Description("代码")]
public string Code { get; set; }
/// <summary>
/// 名称
/// </summary>
[Description("名称")]
public string Name { get; set; }
/// <summary>
/// 备注
/// </summary>
[Description("备注")]
public string Remark { get; set; }
}
}