|
|
@ -1,4 +1,5 @@ |
|
|
|
using Magicodes.ExporterAndImporter.Core; |
|
|
|
using Microsoft.AspNetCore.Http; |
|
|
|
using System; |
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
@ -40,6 +41,22 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos |
|
|
|
public EnumBusinessType BusinessType { get; set; } |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 导入请求
|
|
|
|
/// </summary>
|
|
|
|
public class PUB_SAImportRequestDto |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// 文件
|
|
|
|
/// </summary>
|
|
|
|
public IFormFileCollection Files { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 是否是备件
|
|
|
|
/// </summary>
|
|
|
|
public EnumBusinessType BusinessType { get; set; } |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 导入
|
|
|
|
/// </summary>
|
|
|
|