UESpecInfo.cs 367 B

12345678910111213
  1. using MathNet.Numerics.LinearAlgebra.Factorization;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace JiaZhiQuan.Common.Models.VO.UE {
  5. public class UESpecInfo {
  6. public int specId { get; set; }
  7. public string specName { get; set; }
  8. public DateTime? createAt { get; set; }
  9. public DateTime? updateAt { get; set; }
  10. }
  11. }