12 lines
348 B
C#
12 lines
348 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Bunny.Dao.Entity.System;
|
|
|
|
[Table("System_Icons")]
|
|
[Comment("系统图标表")]
|
|
public class Icons:BaseEntity
|
|
{
|
|
[Comment("图标名称")] [MaxLength(200)] public string? IconName { get; init; }
|
|
} |