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.

32 lines
663 B
C#

using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZKLT.Hadoop;
namespace ZKLT.Hadoop.Model
{
/// <summary>
/// 存储过程
/// </summary>
public class HDP_StoredParams
{
private string _Name;
private JToken? _Params;
/// <summary>
/// 存储过程名称
/// </summary>
public string Name { get => _Name; set => _Name = value; }
/// <summary>
/// 存储过程参数
/// </summary>
public JToken? Params { get => _Params; set => _Params = value; }
}
}