天津投入产出系统后端
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.
 
 
 
 
 
 

33 lines
716 B

using System;
using System.Collections;
using System.Runtime.Serialization;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace QMAPP.Entity
{
public class ImportMessage : BaseEntity
{
///<summary>
///新增条数
///</summary>
public int insertNum { get; set; }
///<summary>
///修改条数
///</summary>
public int updateNum { get; set; }
///<summary>
///失败条数
///</summary>
public int failureNum { get; set; }
/// <summary>
/// 错误信息
/// </summary>
public List<RowError> Errors { get; set; }
}
}