添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
namespace JNPF.Common.Models;
/// <summary>
/// oracle扩展属性模型.
/// </summary>
public class OracleParamModel
{
/// <summary>
/// oracle扩展属性开启.
/// </summary>
public bool oracleExtend { get; set; }
/// <summary>
/// oracle连接方式.
/// </summary>
public string oracleLinkType { get; set; }
/// <summary>
/// oracle角色.
/// </summary>
public string oracleRole { get; set; }
/// <summary>
/// oracle服务名.
/// </summary>
public string oracleService { get; set; }
}