37 lines
760 B
C#
37 lines
760 B
C#
![]() |
using Microsoft.AspNetCore.Http;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using VOL.Model.Ai;
|
|||
|
|
|||
|
namespace VOL.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Ai人脸识别
|
|||
|
/// </summary>
|
|||
|
public class GetFaceParam : AiRequestDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 照片
|
|||
|
/// </summary>
|
|||
|
public string Base64 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 学校Code
|
|||
|
/// </summary>
|
|||
|
public string SchoolCode { get; set; }
|
|||
|
|
|||
|
// <summary>
|
|||
|
// 年级Id
|
|||
|
// </summary>
|
|||
|
//public int? ClassId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 照片
|
|||
|
/// </summary>
|
|||
|
//public IFormFile ImgFile { get; set; }
|
|||
|
}
|
|||
|
}
|