You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.7 KiB
C#

7 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZKLT.Hadoop.Model
{
/// <summary>
/// 命令
/// </summary>
public class HDP_Command
{
private string? _SourceId;
private string? _TableId;
private int? _PageIndex;
private int? _PageSize;
private string? _Type;
7 months ago
private Dictionary<string, string>? _Where;
private Dictionary<string, object>? _Data;
private Dictionary<string, string>? _Order;
/// <summary>
/// 源
/// </summary>
public string? SourceId { get => _SourceId; set => _SourceId = value; }
/// <summary>
/// 表
/// </summary>
public string? TableId { get => _TableId; set => _TableId = value; }
/// <summary>
/// 条件
/// </summary>
public Dictionary<string, string>? Where { get => _Where; set => _Where = value; }
/// <summary>
/// 数据
/// </summary>
public Dictionary<string, object>? Data { get => _Data; set => _Data = value; }
/// <summary>
/// 分页下标
/// </summary>
public int? PageIndex { get => _PageIndex; set => _PageIndex = value; }
/// <summary>
/// 分页大小
/// </summary>
public int? PageSize { get => _PageSize; set => _PageSize = value; }
/// <summary>
/// 排序
/// </summary>
public Dictionary<string, string>? Order { get => _Order; set => _Order = value; }
/// <summary>
/// 命令类型
/// </summary>
public string? Type { get => _Type; set => _Type = value; }
7 months ago
}
}