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.

24 lines
481 B
C#

namespace DS.WMS.Core.Info.Dtos
{
/// <summary>
/// 往来单位使用情况
/// </summary>
public class ClientUsage
{
/// <summary>
/// ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 往来单位简称
/// </summary>
public string? Name { get; set; }
/// <summary>
/// 是否已使用
/// </summary>
public bool IsUsed { get; set; }
}
}