20 lines
374 B
C#
20 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WebAPIServer.Models;
|
|
|
|
public partial class TblUtsManageSearchkey
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据库ID
|
|
/// </summary>
|
|
public int DataBaseId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 查询条件
|
|
/// </summary>
|
|
public string SearchVarKey { get; set; } = null!;
|
|
}
|