using System.ComponentModel.DataAnnotations;
namespace CampusErrand.Models;
///
/// 服务入口表
///
public class ServiceEntry
{
[Key]
public int Id { get; set; }
/// 服务名称
[MaxLength(32)]
public string Name { get; set; } = string.Empty;
/// 图标图片地址
[MaxLength(512)]
public string IconUrl { get; set; } = string.Empty;
/// 跳转页面路径
[MaxLength(256)]
public string PagePath { get; set; } = string.Empty;
/// 排序权重
public int SortOrder { get; set; }
/// 是否启用
public bool IsEnabled { get; set; } = true;
}