添加项目文件。
This commit is contained in:
29
Epost.Model/Addresssage/AddressList.cs
Normal file
29
Epost.Model/Addresssage/AddressList.cs
Normal file
@ -0,0 +1,29 @@
|
||||
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
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user