19 lines
443 B
C#
19 lines
443 B
C#
namespace YLErp.Model
|
|
{
|
|
public class CheckSelectedGroupTradesForActionResponse
|
|
{
|
|
public bool IsSuccess { get; set; }
|
|
public string ErrorMsg { get; set; }
|
|
public trade trade { get; set; }
|
|
|
|
public List<trade_cash> ChildTradeCashs { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否跳转分组了结列表
|
|
/// </summary>
|
|
public bool GotoTradeGroupActionList { get; set; }
|
|
|
|
|
|
}
|
|
}
|