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.
56 lines
1.3 KiB
56 lines
1.3 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;
|
|
using Volo.Abp.Domain.Entities;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
namespace Shentun.Peis.Models
|
|
{
|
|
|
|
/// <summary>
|
|
/// 弃检模板
|
|
/// </summary>
|
|
[Table("give_up_check_template")]
|
|
public class GiveUpCheckTemplate : AuditedEntity<Guid>, IHasConcurrencyStamp
|
|
{
|
|
public GiveUpCheckTemplate() { }
|
|
|
|
public GiveUpCheckTemplate(Guid id) : base(id)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 模板名称
|
|
/// </summary>
|
|
[Column("display_name")]
|
|
[StringLength(100)]
|
|
public string DisplayName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 模板路径
|
|
/// </summary>
|
|
[Column("informed_consent_template_file")]
|
|
[StringLength(200)]
|
|
public string InformedConsentTemplateFile { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 是否启用 只能启用一个
|
|
/// </summary>
|
|
[Column("is_active")]
|
|
[MaxLength(1)]
|
|
public char IsActive { get; set; }
|
|
|
|
|
|
[Column("concurrency_stamp")]
|
|
public string ConcurrencyStamp { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|