using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace YbTest.Models
{
///
/// 方法信息表
///
[SugarTable("STD_METHOD_CONFIG")]
public class MethodConfig
{
///
/// 备 注:唯一标识符(UUID)
/// 默认值:
///
[SugarColumn(ColumnName="METHOD_ID" ,IsPrimaryKey = true) ]
public string MethodId { get; set; } = null!;
///
/// 备 注:方法名称(需符合医保规范)
/// 默认值:
///
[SugarColumn(ColumnName="METHOD_NAME" ) ]
public string MethodName { get; set; } = null!;
///
/// 备 注:方法调用路径
/// 默认值:
///
[SugarColumn(ColumnName="METHOD_VALUE" ) ]
public string MethodValue { get; set; } = null!;
///
/// 备 注:是否保存入参(0-否,1-是)
/// 默认值:
///
[SugarColumn(ColumnName="SAVE_INPUT" ) ]
public short SaveInput { get; set; }
///
/// 备 注:是否保存出参(0-否,1-是)
/// 默认值:
///
[SugarColumn(ColumnName="SAVE_OUTPUT" ) ]
public short SaveOutPut { get; set; }
///
/// 备 注:所属对接对象(外键关联)
/// 默认值:
///
[SugarColumn(ColumnName="BIND_OBJECT" ) ]
public long BindObject { get; set; }
///
/// 备 注:系统方法名
/// 默认值:
///
[SugarColumn(ColumnName="BIND_SYS_CODE" ) ]
public string? BindSysCode { get; set; }
}
}