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.
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
private string[]? _Col;
|
|
|
|
|
|
|
|
|
|
private JContainer? _Where;
|
|
|
|
|
|
|
|
|
|
private JContainer? _Data;
|
|
|
|
|
|
|
|
|
|
private JContainer? _Order;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 源
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? SourceId { get => _SourceId; set => _SourceId = value; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? TableId { get => _TableId; set => _TableId = value; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 条件
|
|
|
|
|
/// </summary>
|
|
|
|
|
public JContainer? Where { get => _Where; set => _Where = value; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
public JContainer? 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 JContainer? Order { get => _Order; set => _Order = value; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 命令类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? Type { get => _Type; set => _Type = value; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 列
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string[]? Col { get => _Col; set => _Col = value; }
|
|
|
|
|
}
|
|
|
|
|
}
|