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; using VOL.Entity.Enum; using VOL.Model; namespace VOL.Model { /// /// 训练信息参数 /// public class TrainingDataParam { /// ///数据来源 /// public DataSource? DataSource { get; set; } /// /// 训练项目类型 /// public int ItemType { get; set; } /// /// 开始时间 /// public DateTime? StartTime { get; set; } /// /// 结束时间 /// public DateTime? EndTime { get; set; } } }