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.
44 lines
1.0 KiB
44 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public class TB_CLAIM_APPEND
|
|
{
|
|
|
|
|
|
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
[Key]
|
|
public long UID { set; get; }
|
|
/// <summary>
|
|
/// 索赔GUID
|
|
/// </summary>
|
|
public Guid? CaimGUID { set; get; }
|
|
/// <summary>
|
|
/// 文件名
|
|
/// </summary>
|
|
public string FileName { set; get; }
|
|
/// <summary>
|
|
/// 扩展名
|
|
/// </summary>
|
|
public string Extend { set; get; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime? CreateTime { set; get; }
|
|
/// <summary>
|
|
/// FileNameMD5文件名称
|
|
/// </summary>
|
|
public string FileNameMD5 { set; get; }
|
|
|
|
[NotMapped]
|
|
public string Link { set; get; }
|
|
}
|
|
}
|
|
|