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.
18 lines
468 B
18 lines
468 B
2 years ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BBWYB.Server.Model.Dto
|
||
|
{
|
||
|
public class BatchCURDSchemeRequest
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 需要修改的采购方案
|
||
|
/// </summary>
|
||
|
public IList<EditPurchaseSchemeRequest> EditPurchaseSchemeList { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 需要新增的采购方案
|
||
|
/// </summary>
|
||
|
public IList<InputPurchaseSchemeRequest> AddPurchaseSchemeList { get; set; }
|
||
|
}
|
||
|
}
|