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.
96 lines
2.6 KiB
96 lines
2.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Win_in.Sfs.Scp.WebApi.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi.POs
|
|
{
|
|
/// <summary>
|
|
/// 采购订单主表Dto
|
|
/// </summary>
|
|
public class PODTO : EntityDtoBase<Guid>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 订单号(PoNumber)
|
|
/// </summary>
|
|
[Display(Name = "订单号(PoNumber)")]
|
|
public string PoNumber { set; get; }
|
|
|
|
/// <summary>
|
|
/// 供应商代码(SupplierCode)
|
|
/// </summary>
|
|
[Display(Name = "供应商代码(SupplierCode)")]
|
|
public string SupplierCode { set; get; }
|
|
|
|
/// <summary>
|
|
/// 订单类型(PoType)
|
|
/// </summary>
|
|
[Display(Name = "订单类型(PoType)")]
|
|
public string PoType { set; get; }
|
|
|
|
/// <summary>
|
|
/// 订单状态(Status)
|
|
/// </summary>
|
|
[Display(Name = "订单状态(Status)")]
|
|
public int Status { set; get; }
|
|
|
|
/// <summary>
|
|
/// 是否寄存订单(IsConsignment)
|
|
/// </summary>
|
|
[Display(Name = "是否寄存订单(IsConsignment)")]
|
|
public bool IsConsignment { set; get; }
|
|
|
|
/// <summary>
|
|
/// 订单日期(OrderDate)
|
|
/// </summary>
|
|
[Display(Name = "订单日期(OrderDate)")]
|
|
public DateTime OrderDate { set; get; }
|
|
|
|
/// <summary>
|
|
/// 截止日期(DueDate)
|
|
/// </summary>
|
|
[Display(Name = "截止日期(DueDate)")]
|
|
public DateTime DueDate { set; get; }
|
|
|
|
/// <summary>
|
|
/// 税率(TaxRate)
|
|
/// </summary>
|
|
[Display(Name = "税率(TaxRate)")]
|
|
public decimal TaxRate { set; get; }
|
|
|
|
/// <summary>
|
|
/// 地点(Site)
|
|
/// </summary>
|
|
[Display(Name = "地点(Site)")]
|
|
public string Site { set; get; }
|
|
|
|
/// <summary>
|
|
/// 公司(Company)
|
|
/// </summary>
|
|
[Display(Name = "公司(Company)")]
|
|
public string Company { set; get; }
|
|
|
|
/// <summary>
|
|
/// 联系人(ContactName)
|
|
/// </summary>
|
|
[Display(Name = "联系人(ContactName)")]
|
|
public string ContactName { set; get; }
|
|
|
|
/// <summary>
|
|
/// 联系电话(ContactPhone)
|
|
/// </summary>
|
|
[Display(Name = "联系电话(ContactPhone)")]
|
|
public string ContactPhone { set; get; }
|
|
|
|
/// <summary>
|
|
/// 备注(Remark)
|
|
/// </summary>
|
|
[Display(Name = "备注(Remark)")]
|
|
public string Remark { set; get; }
|
|
|
|
|
|
public virtual ICollection<PODetailDTO> Details { get; set; }
|
|
}
|
|
}
|