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 货位地址
///
/// 货位地址
///
[Display(Name = "货位地址")]
public string Location { get; set; }
#endregion
#region 设备地址
///
/// 设备地址
///
[Display(Name = "设备地址")]
public int Address { get; set; }
#endregion
}
}