namespace YLErp.Modules.RiskEngine.Dto
{
///
/// 批量操作结果
///
public class BatchOperationResult
{
/// 是否全部成功
public bool Success { get; set; }
/// 总数量
public int TotalCount { get; set; }
/// 成功数量
public int SuccessCount { get; set; }
/// 错误信息
public string ErrorMessage { get; set; }
}
}