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