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.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace ICSSoft.FromERP.Model { public class VendorDto { /// <summary>
///
/// </summary>
public string VenCode { get; set; } /// <summary>
///
/// </summary>
public string VenName { get; set; } /// <summary>
/// 供应商简称
/// </summary>
public string VenAbbName { get; set; } /// <summary>
/// 地址
/// </summary>
public string VenAddress { get; set; } /// <summary>
/// 联系人
/// </summary>
public string VenPerson { get; set; } /// <summary>
/// 手机
/// </summary>
public string VenPhone { get; set; } /// <summary>
/// 邮箱
/// </summary>
public string VenEmail { get; set; } /// <summary>
///
/// </summary>
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; } } }
|