Files
2026-05-15 23:22:48 +08:00

17 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VolPro.Entity.DomainModels.Sys
{
public class TableColumnInfo
{
public string Prec_Scale { get; set; }
public string ColumnType { get; set; }
public string ColumnName { get; set; }
}
}