using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 添加的同时上传文件
///
public class AddEpanetFileTogetherInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 所属类型
///
public string BelongType { get; set; }
///
/// 所属id
///
public long BelongID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 存储编码
///
public string StorageCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}