34 lines
706 B
C#
34 lines
706 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace WMS.Model.SystemManage
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 通用查询的数据
|
|||
|
|
/// </summary>
|
|||
|
|
public class SelectTye
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 列的名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string ClmName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 列的值
|
|||
|
|
/// </summary>
|
|||
|
|
public string ClmValue { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string TableName { get; set; }
|
|||
|
|
}
|
|||
|
|
public class SelectDataTableClm
|
|||
|
|
{
|
|||
|
|
public string ClmFileName { get; set; }
|
|||
|
|
public string ClmValue { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|