40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-07-13 09:48:30
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目标准 - 分页")]
|
|
[Table("ReadingCriterionPage")]
|
|
public class ReadingCriterionPage : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public List<ReadingQuestionTrial> ReadingQuestionList { get; set; } = new List<ReadingQuestionTrial>();
|
|
#endregion
|
|
public bool IsEnable { get; set; }
|
|
|
|
[Comment("是否公共分页")]
|
|
public bool IsPublicPage { get; set; }
|
|
|
|
public string PageName { get; set; } = null!;
|
|
|
|
public Guid ReadingQuestionCriterionTrialId { get; set; }
|
|
|
|
public int ShowOrder { get; set; }
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|