Files
irc-netcore-api/IRaCIS.Core.Domain/QC/QCChallengeDialog.cs
T
hang 19f4385055
continuous-integration/drone/push Build is passing
同步数据模型和数据库对应关系1
2024-09-19 21:56:36 +08:00

26 lines
679 B
C#

using IRaCIS.Core.Domain.Share;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models;
[Comment("受试者访视 - QC质疑对话")]
[Table("QCChallengeDialog")]
public class QCChallengeDialog : BaseAddAuditEntity
{
#region 导航属性
[JsonIgnore]
public QCChallenge QCChallenge { get; set; }
#endregion
public Guid QCChallengeId { get; set; }
public Guid SubjectVisitId { get; set; }
[StringLength(500)]
public string TalkContent { get; set; } = null!;
public UserTypeEnum UserTypeEnum { get; set; }
}