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.
38 lines
780 B
38 lines
780 B
1 year ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace CK.SCP.Models.ScpEntity
|
||
|
{
|
||
|
public class TB_PublicData
|
||
|
{
|
||
|
[Key]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public int ID { get; set; }
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string Ver { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string FileName { get; set; }
|
||
|
|
||
|
public DateTime AddTime { get; set; }
|
||
|
|
||
|
[StringLength(500)]
|
||
|
public string UserName { get; set; }
|
||
|
|
||
|
[NotMapped]
|
||
|
public string UploadUser { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|