You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
497 B
C#
22 lines
497 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///供应商对应道口号
|
|
/// </summary>
|
|
[Serializable]
|
|
public class VendorDock
|
|
{
|
|
[Column("verdor_code")]
|
|
[DisplayName("供应商代码")]
|
|
public string VerdorCode { get; set; }
|
|
|
|
[Column("dock")]
|
|
[DisplayName("道口号")]
|
|
public string Dock { get; set; }
|
|
}
|
|
}
|