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.
57 lines
1.5 KiB
57 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Container.Viewmodel
|
|
{
|
|
/// <summary>
|
|
/// 表单数据项
|
|
/// </summary>
|
|
public class FormItemModel
|
|
{
|
|
/// <summary>
|
|
/// 表单键,request["key"]
|
|
/// </summary>
|
|
public string Key { set; get; }
|
|
/// <summary>
|
|
/// 表单值,上传文件时忽略,request["key"].value
|
|
/// </summary>
|
|
public string Value { set; get; }
|
|
/// <summary>
|
|
/// 是否是文件
|
|
/// </summary>
|
|
public bool IsFile
|
|
{
|
|
get
|
|
{
|
|
if (FileContent == null || FileContent.Length == 0)
|
|
return false;
|
|
|
|
if (FileContent != null && FileContent.Length > 0 && string.IsNullOrWhiteSpace(FileName))
|
|
throw new Exception("上传文件时 FileName 属性值不能为空");
|
|
return true;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 上传的文件名
|
|
/// </summary>
|
|
public string FileName { set; get; }
|
|
|
|
/// <summary>
|
|
/// 上传的文件名
|
|
/// </summary>
|
|
public string voiceCode { set; get; }
|
|
|
|
/// <summary>
|
|
/// 上传的文件名
|
|
/// </summary>
|
|
public string mallCode { set; get; }
|
|
/// <summary>
|
|
/// 上传的文件内容
|
|
/// </summary>
|
|
public Stream FileContent { set; get; }
|
|
}
|
|
}
|
|
|