23 lines
509 B
C#
23 lines
509 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 专项
|
|
/// </summary>
|
|
public class Ai_SpecialRequest : PageDto
|
|
{
|
|
/// <summary>
|
|
/// 专项名称
|
|
/// </summary>
|
|
public string? SpecialName { get; set; }
|
|
}
|
|
}
|