2024-08-30 16:08:08 +08:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2024-09-02 09:31:34 +08:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2024-08-30 16:08:08 +08:00
|
|
|
|
using Bunny.Dao.Entity.Base;
|
|
|
|
|
|
|
|
|
|
namespace Bunny.Dao.Entity.System;
|
|
|
|
|
|
2024-09-02 09:31:34 +08:00
|
|
|
|
[Table("Blog")]
|
2024-08-30 16:08:08 +08:00
|
|
|
|
public class Blog : BaseEntity
|
|
|
|
|
{
|
2024-09-02 09:31:34 +08:00
|
|
|
|
[Required]
|
|
|
|
|
[Column("BlogUrl", TypeName = "varchar(600)")]
|
|
|
|
|
public string? Url { get; init; }
|
2024-08-30 16:08:08 +08:00
|
|
|
|
}
|