using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; namespace Win_in.Sfs.Scp.WebApi; /// /// 采购订单DTO(Purchase order DTO) /// public class PurchaseOrderCreateDTO : EntityDto { /// /// 订单号(PoNumber) /// [Display(Name = "订单号(PoNumber)")] public string PoNumber { set; get; } /// /// 供应商代码(SupplierCode) /// [Display(Name = "供应商代码(SupplierCode)")] public string SupplierCode { set; get; } /// /// 订单类型(PoType) /// [Display(Name = "订单类型(PoType)")] public string PoType { set; get; } /// /// 订单状态(Status) /// [Display(Name = "订单状态(Status)")] public int Status { set; get; } /// /// 是否寄存订单(IsConsignment) /// [Display(Name = "是否寄存订单(IsConsignment)")] public bool IsConsignment { set; get; } /// /// 订单日期(OrderDate) /// [Display(Name = "订单日期(OrderDate)")] public DateTime OrderDate { set; get; } /// /// 截止日期(DueDate) /// [Display(Name = "截止日期(DueDate)")] public DateTime DueDate { set; get; } /// /// 税率(TaxRate) /// [Display(Name = "税率(TaxRate)")] public decimal TaxRate { set; get; } /// /// 版本(version) /// [Display(Name = "版本")] public string Version { get; set; } /// /// 联系人(ContactName) /// [Display(Name = "联系人(ContactName)")] public string ContactName { set; get; } /// /// 联系电话(ContactPhone) /// [Display(Name = "联系电话(ContactPhone)")] public string ContactPhone { set; get; } /// /// 备注(Remark) /// [Display(Name = "备注(Remark)")] public string Remark { set; get; } /// /// 地点(Site) /// [Display(Name = "地点(Site)")] public string Site { set; get; } /// /// 公司(Company) /// [Display(Name = "公司(Company)")] public string Company { set; get; } public virtual ICollection Details { get; set; } }