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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.PluginServiceInterface.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预审成果包文件元数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class YSJ
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 包类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BType { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 包版本
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BEdition { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否加密
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Encrypted { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 加密密码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Pwd { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CreateTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CreateUser { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string UpdateUser { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后一次更新时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LastUpdateTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|