18 lines
314 B
C#
18 lines
314 B
C#
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; }
|
|
}
|