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.
23 lines
547 B
23 lines
547 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shentun.WebPeis.Models;
|
|
|
|
public partial class DiseaseRiskNormalLevel
|
|
{
|
|
public short DiseaseRiskNormalLevelId { get; set; }
|
|
|
|
public string DiseaseRiskNormalLevelName { get; set; } = null!;
|
|
|
|
public string SimpleCode { get; set; } = null!;
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
|
|
public Guid CreatorId { get; set; }
|
|
|
|
public DateTime LastModificationTime { get; set; }
|
|
|
|
public Guid LastModifierId { get; set; }
|
|
}
|