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
746 B
C#
30 lines
746 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///客户管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Customer
|
|
{
|
|
[Column("customer_code")]
|
|
[DisplayName("客户代码")]
|
|
public string CustomerCode { get; set; }
|
|
|
|
[Column("customer_name")]
|
|
[DisplayName("客户名称")]
|
|
public string CustomerName { get; set; }
|
|
|
|
[Column("customer_tel")]
|
|
[DisplayName("客户电话")]
|
|
public string CustomerTel { get; set; }
|
|
|
|
[Column("customer_addr")]
|
|
[DisplayName("客户地址")]
|
|
public string CustomerAddr { get; set; }
|
|
}
|
|
}
|