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.
31 lines
670 B
C#
31 lines
670 B
C#
8 months ago
|
using DS.Module.Core;
|
||
|
|
||
|
namespace DS.WMS.Core.Code.Dtos;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 业务来源明细信息选择返回
|
||
|
/// </summary>
|
||
|
public class CodeSourceDetailSelectRes
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键Id
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 业务来源Id
|
||
|
/// </summary>
|
||
|
public long SourceId { get; set; }
|
||
|
/// <summary>
|
||
|
/// 来源明细名称
|
||
|
/// </summary>
|
||
|
public string DetailName { get; set; }= "";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 英文名称
|
||
|
/// </summary>
|
||
|
public string EnName { get; set; } = "";
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
public string Note { get; set; } = "";
|
||
|
}
|