17 lines
426 B
C#
17 lines
426 B
C#
namespace YLErp.Model
|
|
{
|
|
public class SaveGroupTradeCashReq
|
|
{
|
|
public trade_cash trade_cash { get; set; }
|
|
|
|
public List<int> tradeIds { get; set; }
|
|
|
|
public List<trade_cash> childTradeCashs { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求是否来自api/v1/trade/group_options_close_start
|
|
/// </summary>
|
|
public bool from_group_options_close_start_v1 { get; set; }
|
|
}
|
|
}
|