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.
33 lines
751 B
33 lines
751 B
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Shentun.WebPeis.Models;
|
|
|
|
/// <summary>
|
|
/// 子答案
|
|
/// </summary>
|
|
public partial class QuestionAnswerChild : AuditedEntity, IHasConcurrencyStamp
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public Guid QuestionAnswerChildId { get; set; }
|
|
/// <summary>
|
|
/// 子答案
|
|
/// </summary>
|
|
|
|
public string QuestionAnswerChildName { get; set; } = null!;
|
|
|
|
public string SimpleCode { get; set; } = null!;
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
public string? ConcurrencyStamp { get; set; }
|
|
|
|
public override object?[] GetKeys()
|
|
{
|
|
return [QuestionAnswerChildId];
|
|
}
|
|
}
|