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.
103 lines
2.7 KiB
103 lines
2.7 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Win_in.Sfs.Scp.WebApi.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi.Suppliers
|
|
{
|
|
/// <summary>
|
|
/// 供应商DTO(Supplier DTO)
|
|
/// </summary>
|
|
public class SupplierDTO : EntityDtoBase<Guid>
|
|
{
|
|
/// <summary>
|
|
/// 代码(Code)
|
|
/// </summary>
|
|
[Display(Name = "代码(Code)")]
|
|
public string Code { set; get; }
|
|
|
|
/// <summary>
|
|
/// 简称(Name)
|
|
/// </summary>
|
|
[Display(Name = "简称(Name)")]
|
|
public string Name { set; get; }
|
|
|
|
/// <summary>
|
|
/// 描述(Description)
|
|
/// </summary>
|
|
[Display(Name = "描述(Description)")]
|
|
public string Desc { set; get; }
|
|
|
|
/// <summary>
|
|
/// 级别(Rank)
|
|
/// </summary>
|
|
[Display(Name = "级别(Rank)")]
|
|
public string Rank { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
[Display(Name = "地址(Address)")]
|
|
public string Address { get; set; }
|
|
|
|
/// <summary>
|
|
/// 国家(Country)
|
|
/// </summary>
|
|
[Display(Name = "国家(Country)")]
|
|
public string Country { get; set; }
|
|
|
|
/// <summary>
|
|
/// 城市(City)
|
|
/// </summary>
|
|
[Display(Name = "城市(City)")]
|
|
public string City { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电话(Phone)
|
|
/// </summary>
|
|
[Display(Name = "电话(Phone)")]
|
|
public string Phone { set; get; }
|
|
|
|
/// <summary>
|
|
/// 传真(Fax)
|
|
/// </summary>
|
|
[Display(Name = "传真(Fax)")]
|
|
public string Fax { set; get; }
|
|
|
|
/// <summary>
|
|
/// 邮编(PostId)
|
|
/// </summary>
|
|
[Display(Name = "邮编(PostId)")]
|
|
public string PostId { set; get; }
|
|
|
|
/// <summary>
|
|
/// 联系人(ContactName)
|
|
/// </summary>
|
|
[Display(Name = "联系人(ContactName)")]
|
|
public string ContactName { set; get; }
|
|
|
|
/// <summary>
|
|
/// 货币(Currency)
|
|
/// </summary>
|
|
[Display(Name = "货币(Currency)")]
|
|
public string Currency { set; get; }
|
|
|
|
/// <summary>
|
|
/// 是否激活(IsActive)
|
|
/// </summary>
|
|
[Display(Name = "是否激活(IsActive)")]
|
|
public bool IsActive { set; get; }
|
|
|
|
/// <summary>
|
|
/// 公司(Company)
|
|
/// </summary>
|
|
[Display(Name = "公司(Company)")]
|
|
public string Company { set; get; }
|
|
|
|
/// <summary>
|
|
/// 备注(Remark)
|
|
/// </summary>
|
|
[Display(Name = "备注(Remark)")]
|
|
public string Remark { set; get; }
|
|
}
|
|
}
|