30 lines
660 B
C#
30 lines
660 B
C#
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
|
|
|
|
}
|
|
}
|