tijian_tieying/web/dccdc.Models/sqfileModel.cs

20 lines
489 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class sqfileModel
{
public int id { get; set; }
public string type { get; set; }
public int sqid { get; set; }
public int sqrid { get; set; }
public DateTime addtime { get; set; }
public string title { get; set; }
public string filepath { get; set; }
public string downlog { get; set; }
}
}