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.
20 lines
410 B
C#
20 lines
410 B
C#
namespace DS.WMS.Core.BaseInfo.Dtos;
|
|
|
|
public class StoreAreaSelectViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上级编号
|
|
/// </summary>
|
|
public string ParentCode { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string AREACODE { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string AREANAME { get; set; }
|
|
} |