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.
21 lines
605 B
21 lines
605 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RegionComparisonTool.Models.Std
|
|
{
|
|
/// <summary>
|
|
/// 标准申请项目
|
|
/// </summary>
|
|
public class DictStdReqItem
|
|
{
|
|
[Key]
|
|
public Int32 ID { get; set; }
|
|
public string? StdReqItemCode { get; set; }
|
|
public string? StdReqItemName { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
|
public string? Updater { get; set; }
|
|
public bool? IsStope { get; set; }
|
|
public bool? IsDelete { get; set; }
|
|
}
|
|
}
|
|
|