using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model.Ai { /// /// 专项信息 /// public class Ai_SpecialDto { /// /// Id /// public int Id { get; set; } /// /// 专项名称 /// public string SpecialName { get; set; } /// /// 图片地址 /// public string ImageUrl { get; set; } } }