18 lines
314 B
C#
Raw Normal View History

2024-11-26 13:45:28 +08:00
using System;
using System.Collections.Generic;
namespace YunDa.SOMS.IODB.Models;
public partial class DescTable
{
public int Id { get; set; }
public string? TbName { get; set; }
public string? TbDesc { get; set; }
public string? TbType { get; set; }
public int? RowAd { get; set; }
}