using System.ComponentModel.DataAnnotations; namespace CampusErrand.Models; /// /// 系统配置表 /// public class SystemConfig { [Key] public int Id { get; set; } /// 配置键 [MaxLength(64)] public string Key { get; set; } = string.Empty; /// 配置值(JSON) public string Value { get; set; } = string.Empty; /// 更新时间 public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; }