23 lines
491 B
23 lines
491 B
|
3 years ago
|
using BBWY.Server.Model.Db;
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace BBWY.Server.Model.Dto
|
||
|
|
{
|
||
|
|
public class CancelPurchaseOrderRequest: PlatformRequest
|
||
|
|
{
|
||
|
|
public string OrderId { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
public string Remark { get; set; }
|
||
|
|
|
||
|
|
public PurchaseAccount PurchaseAccount { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 采购平台
|
||
|
|
/// </summary>
|
||
|
|
public Enums.Platform PurchasePlatform { get; set; }
|
||
|
|
}
|
||
|
|
}
|