Files
zszq-trs/YLErpDAL/Model/SaveGroupTradeCashReq.cs
2024-05-09 14:06:26 +08:00

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; }
}
}