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

67 lines
1.8 KiB

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