You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
929 B
34 lines
929 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.FromERP.Model
|
|
{
|
|
public class CustomerDto
|
|
{
|
|
public string CusCode { get; set; }
|
|
public string CusName { get; set; }
|
|
/// <summary>
|
|
/// 客户简称
|
|
/// </summary>
|
|
public string CusAbbName { get; set; }
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
public string CusAddress { get; set; }
|
|
/// <summary>
|
|
/// 联系人
|
|
/// </summary>
|
|
public string CusPerson { get; set; }
|
|
public string CusPhone { get; set; }
|
|
public string CusEmail { get; set; }
|
|
|
|
public DateTime Mtime { get; set; }
|
|
public string Free1 { get; set; }
|
|
public string Free2 { get; set; }
|
|
public string Free3 { get; set; }
|
|
public string Free4 { get; set; }
|
|
}
|
|
}
|