using MathNet.Numerics.LinearAlgebra.Factorization; using System; using System.Collections.Generic; namespace JiaZhiQuan.Common.Models.VO.UE { public class SvInfo { public int svId { get; set; } public string svName { get; set; } public string svImg { get; set; } public DateTime? createAt { get; set; } public DateTime? updateAt { get; set; } } }