Files
T-DAS/Epost.Model/Addresssage/AddressList.cs

30 lines
660 B
C#
Raw Permalink Normal View History

2023-01-13 15:30:20 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model.Addresssage
{
public class AddressList : ListBase
{
#region
/// <summary>
/// 货位地址
/// </summary>
[Display(Name = "货位地址")]
public string Location { get; set; }
#endregion
#region
/// <summary>
/// 设备地址
/// </summary>
[Display(Name = "设备地址")]
public int Address { get; set; }
#endregion
}
}