16 lines
266 B
C#
16 lines
266 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DAL.New_Models;
|
|
|
|
public partial class TbSysSeek
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Prefix { get; set; }
|
|
|
|
public int? Suffix { get; set; }
|
|
|
|
public string? Remark { get; set; }
|
|
}
|