25 lines
502 B
C#
25 lines
502 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.ApiModel.OP
|
|||
|
|
{
|
|||
|
|
public class OPFileReulst
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 结果
|
|||
|
|
/// </summary>
|
|||
|
|
public bool Result { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 文件地址
|
|||
|
|
/// </summary>
|
|||
|
|
public List<string> FilePath { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 出错原因
|
|||
|
|
/// </summary>
|
|||
|
|
public string ErrorMsg { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|