添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

View 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
}
}