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.
30 lines
780 B
C#
30 lines
780 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///支给件维护
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SupportingCustomer
|
|
{
|
|
[Column("customer_no")]
|
|
[DisplayName("客户供应商编号")]
|
|
public string CustomerNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("客户供应商名称")]
|
|
public string partSpec { get; set; }
|
|
|
|
[Column("hz_customer_no")]
|
|
[DisplayName("华智供应商编号")]
|
|
public string HzCustomerNo { get; set; }
|
|
|
|
[Column("part_spec2")]
|
|
[DisplayName("华智供应商名称")]
|
|
public string partSpec2 { get; set; }
|
|
}
|
|
}
|