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.
|
- 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 HealthMonitor.Util.Entities.Base;
- using HealthMonitor.Util.Entities.Interfaces;
-
- namespace HealthMonitor.Util.Entities.GpsCard
- {
- public partial class GpsBloodPressReferenceValue : GpsCardEntityBase, IKeyIntType
- {
- [Key]
-
- [Required]
- public int Id { get; set; }
-
- [Required]
- // [ForeignKey(nameof(SubjectId))]
- public int Age { get; set; }
-
- [Required]
- public int Gender { get; set; }
-
- [Required]
- public int Systolic { get; set; }
-
- [Required]
- public int Diastolic { get; set; }
-
- public bool Hypertension { get; set; }
-
-
- /// <summary>
- /// 创建时间
- /// </summary>
- [Required]
- public DateTime CreateTime { get; set; } = DateTime.Now;
- /// <summary>
- /// 修改时间
- /// </summary>
- [Required]
- public DateTime UpdateTime { get; set; } = DateTime.Now;
-
-
-
- }
- }
|