31 lines
595 B
C#
31 lines
595 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FrontendWebApi.Models
|
|
{
|
|
|
|
public class export
|
|
{
|
|
public List<int> groupidlist { get; set; }
|
|
public string disaster { get; set; }
|
|
}
|
|
|
|
public class NpoiMemoryStream : MemoryStream
|
|
{
|
|
public NpoiMemoryStream()
|
|
{
|
|
AllowClose = true;
|
|
}
|
|
public bool AllowClose { get; set; }
|
|
|
|
public override void Close()
|
|
{
|
|
if (AllowClose)
|
|
base.Close();
|
|
}
|
|
}
|
|
}
|