Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/ERP/Purchase/PurchaseGetListOutput.cs

25 lines
688 B
C#
Raw Normal View History

2023-01-04 18:16:56 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Model.Base;
using Yi.Framework.Model.ERP.Entitys;
namespace Yi.Framework.DtoModel.ERP.Purchase
{
public class PurchaseGetListOutput: EntityDto<long>
{
2023-01-06 11:12:47 +08:00
public string Code { get; set; } = string.Empty;
2023-01-04 18:16:56 +08:00
public DateTime NeedTime { get; set; }
2023-01-06 11:12:47 +08:00
public string Buyer { get; set; } = string.Empty;
2023-01-04 18:16:56 +08:00
public long TotalMoney { get; set; }
public long PaidMoney { get; set; }
public string SupplierName { get; set; } = string.Empty;
2023-01-04 18:16:56 +08:00
public PurchaseStateEnum PurchaseState { get; set; }
2023-01-06 18:39:54 +08:00
2023-01-04 18:16:56 +08:00
}
}