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.
29 lines
956 B
29 lines
956 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace CK.SCP.Models.ScpEntity.ExcelExportEnttity
|
||
|
{
|
||
|
public class SCP_VENDER_EXPORT
|
||
|
{
|
||
|
public string 供应商编号 { get; set; }
|
||
|
public string 供应商名称 { get; set; }
|
||
|
public string 供应商缩写 { get; set; }
|
||
|
public string 供应商类型 { get; set; }
|
||
|
public string 国家 { get; set; }
|
||
|
public string 城市 { get; set; }
|
||
|
public string 币种 { get; set; }
|
||
|
public string 地址 { get; set; }
|
||
|
public string 邮编 { get; set; }
|
||
|
public string 联系人 { get; set; }
|
||
|
public string 电话 { get; set; }
|
||
|
public string 传真 { get; set; }
|
||
|
public string 电子邮件 { get; set; }
|
||
|
public string 状态 { get; set; }
|
||
|
public string 备注 { get; set; }
|
||
|
public string 税率 { get; set; }
|
||
|
}
|
||
|
}
|