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; }
|
2023-01-06 15:40:46 +08:00
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|