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