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

4 years ago
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)
4 years ago
/// </summary>
[Display(Name = "订单号(PoNumber)")]
public string PoNumber { set; get; }
4 years ago
/// <summary>
/// 供应商代码(SupplierCode)
4 years ago
/// </summary>
[Display(Name = "供应商代码(SupplierCode)")]
public string SupplierCode { set; get; }
4 years ago
/// <summary>
/// 订单类型(PoType)
4 years ago
/// </summary>
[Display(Name = "订单类型(PoType)")]
public string PoType { set; get; }
4 years ago
/// <summary>
/// 订单状态(Status)
4 years ago
/// </summary>
[Display(Name = "订单状态(Status)")]
public int Status { set; get; }
4 years ago
/// <summary>
/// 是否寄存订单(IsConsignment)
4 years ago
/// </summary>
[Display(Name = "是否寄存订单(IsConsignment)")]
public bool IsConsignment { set; get; }
4 years ago
/// <summary>
/// 订单日期(OrderDate)
4 years ago
/// </summary>
[Display(Name = "订单日期(OrderDate)")]
public DateTime OrderDate { set; get; }
4 years ago
/// <summary>
/// 截止日期(DueDate)
4 years ago
/// </summary>
[Display(Name = "截止日期(DueDate)")]
public DateTime DueDate { set; get; }
4 years ago
/// <summary>
/// 税率(TaxRate)
4 years ago
/// </summary>
[Display(Name = "税率(TaxRate)")]
public decimal TaxRate { set; get; }
4 years ago
/// <summary>
/// 地点(Site)
4 years ago
/// </summary>
[Display(Name = "地点(Site)")]
public string Site { set; get; }
4 years ago
/// <summary>
/// 公司(Company)
4 years ago
/// </summary>
[Display(Name = "公司(Company)")]
public string Company { set; get; }
4 years ago
/// <summary>
/// 联系人(ContactName)
4 years ago
/// </summary>
[Display(Name = "联系人(ContactName)")]
public string ContactName { set; get; }
4 years ago
/// <summary>
/// 联系电话(ContactPhone)
4 years ago
/// </summary>
[Display(Name = "联系电话(ContactPhone)")]
public string ContactPhone { set; get; }
4 years ago
/// <summary>
/// 备注(Remark)
/// </summary>
[Display(Name = "备注(Remark)")]
public string Remark { set; get; }
4 years ago
public virtual ICollection<PODetailDTO> Details { get; set; }
}
}