初始化
commit
413747ef7a
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,59 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SOA.Persistent;
|
||||
|
||||
namespace IBKLinker_Minio.Entity.MinioController
|
||||
{
|
||||
/// <summary>
|
||||
///minio权限表
|
||||
/// </summary>
|
||||
[Serializable, Table("MINIO_AUTHORITY")]
|
||||
public class MinioAuthority
|
||||
{
|
||||
/// <summary>
|
||||
///唯一标识
|
||||
/// </summary>
|
||||
[Persistent("ID", IsKey = true), DisplayName("唯一标识")]
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///权限ID
|
||||
/// </summary>
|
||||
[Persistent("LIMITS_AUTHORITY_ID"), DisplayName("权限ID")]
|
||||
public int LimitsAuthorityId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件表ID
|
||||
/// </summary>
|
||||
[Persistent("FILE_ID"), DisplayName("文件表ID")]
|
||||
public int FileId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建人
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_USER"), DisplayName("创建人")]
|
||||
public string CreatorUser { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建时间
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
||||
public DateTime? CreatorTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
|
||||
public string AlternateFields { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SOA.Persistent;
|
||||
|
||||
namespace IBKLinker_Minio.Entity.MinioController
|
||||
{
|
||||
/// <summary>
|
||||
///文件关联表
|
||||
/// </summary>
|
||||
[Serializable, Table("MINIO_FILEASSOCIATION")]
|
||||
public class MinioFileassociation
|
||||
{
|
||||
/// <summary>
|
||||
///主键
|
||||
/// </summary>
|
||||
[Persistent("PK", IsKey = true), DisplayName("主键")]
|
||||
public int Pk { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件PK
|
||||
/// </summary>
|
||||
[Persistent("FILE_PK"), DisplayName("文件PK")]
|
||||
public int FilePk { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件名称
|
||||
/// </summary>
|
||||
[Persistent("FILE_NAME"), DisplayName("文件名称")]
|
||||
public string FileName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///关联文件PK
|
||||
/// </summary>
|
||||
[Persistent("ASSOCIATION_FILE_PK"), DisplayName("关联文件PK")]
|
||||
public int AssociationFilePk { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///关联文件名称
|
||||
/// </summary>
|
||||
[Persistent("ASSOCIATION_FILE_NAME"), DisplayName("关联文件名称")]
|
||||
public string AssorciationFileName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建者
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_USER"), DisplayName("创建者")]
|
||||
public string CreatorUser { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建时间
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
||||
public DateTime? CreatorTime { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SOA.Persistent;
|
||||
|
||||
namespace IBKLinker_Minio.Entity.MinioController
|
||||
{
|
||||
/// <summary>
|
||||
///操作日志
|
||||
/// </summary>
|
||||
[Serializable, Table("MINIO_OPERATIONLOG")]
|
||||
public class MinioOperationlog
|
||||
{
|
||||
/// <summary>
|
||||
///主键
|
||||
/// </summary>
|
||||
[Persistent("PK", IsKey =true), DisplayName("主键")]
|
||||
public int Pk { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///操作者
|
||||
/// </summary>
|
||||
[Persistent("OPERATE_USER"), DisplayName("操作者")]
|
||||
public string OperateUser { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///操作时间
|
||||
/// </summary>
|
||||
[Persistent("OPERATE_TIME"), DisplayName("操作时间")]
|
||||
public DateTime? OperateTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///操作
|
||||
/// </summary>
|
||||
[Persistent("OPERATE"), DisplayName("操作")]
|
||||
public string Operater { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建时间
|
||||
/// </summary>
|
||||
[Persistent("CREATION_TIME"), DisplayName("创建时间")]
|
||||
public DateTime? CreationTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
|
||||
public string AlternateFilelds { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,150 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SOA.Persistent;
|
||||
|
||||
namespace IBKLinker_Minio.Entity.MinioController
|
||||
{
|
||||
/// <summary>
|
||||
///minio角色权限表
|
||||
/// </summary>
|
||||
[Serializable, Table("MINIO_ROLE_PERMISSION")]
|
||||
public class MinioRolePermission
|
||||
{
|
||||
/// <summary>
|
||||
///唯一标识
|
||||
/// </summary>
|
||||
[Persistent("PK", IsKey = true), DisplayName("唯一标识")]
|
||||
public int Pk { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///角色ID
|
||||
/// </summary>
|
||||
[Persistent("ID"), DisplayName("角色ID")]
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///角色
|
||||
/// </summary>
|
||||
[Persistent("ROLE_ID"), DisplayName("角色")]
|
||||
public int RoleId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件夹权限ID
|
||||
/// </summary>
|
||||
[Persistent("LIMITS_AUTHORITY_ID"), DisplayName("文件夹权限ID")]
|
||||
public string LimitsAuthorityId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///打印
|
||||
/// </summary>
|
||||
[Persistent("PRINT_FLAG"), DisplayName("打印")]
|
||||
public int PrintFlag { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///查看
|
||||
/// </summary>
|
||||
[Persistent("VIEW_FLAG"), DisplayName("查看")]
|
||||
public int ViewFlag { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///上传
|
||||
/// </summary>
|
||||
[Persistent("UPLOAD_FLAG"), DisplayName("上传")]
|
||||
public int UploadFlag { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///编辑
|
||||
/// </summary>
|
||||
[Persistent("EDIT_FLAG"), DisplayName("编辑")]
|
||||
public int EditFlag { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///移动
|
||||
/// </summary>
|
||||
[Persistent("MOVE_FLAG"), DisplayName("移动")]
|
||||
public int MoveFlag { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///删除
|
||||
/// </summary>
|
||||
[Persistent("DELETE_FLAG"), DisplayName("删除")]
|
||||
public int DeleteFlag { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件夹查看权限
|
||||
/// </summary>
|
||||
[Persistent("FILE_VIEW_PERMISSIONS"), DisplayName("文件夹查看权限")]
|
||||
public int FileViewPermissions { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件夹控制权限
|
||||
/// </summary>
|
||||
[Persistent("FILE_CONTROL_PERMISSIONS"), DisplayName("文件夹控制权限")]
|
||||
public int FileControlPermissions { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///状态
|
||||
/// </summary>
|
||||
[Persistent("STATE"), DisplayName("状态")]
|
||||
public int State { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建人
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_USER"), DisplayName("创建人")]
|
||||
public string CreatorUser { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建时间
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
||||
public DateTime? CreatorTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段1
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS1"), DisplayName("备用字段1")]
|
||||
public string AlternateFields1 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段2
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS2"), DisplayName("备用字段2")]
|
||||
public string AlternateFields2 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段3
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS3"), DisplayName("备用字段3")]
|
||||
public string AlternateFields3 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段4
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS4"), DisplayName("备用字段4")]
|
||||
public string AlternateFields4 { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,101 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SOA.Persistent;
|
||||
|
||||
namespace IBKLinker_Minio.Entity.MinioController
|
||||
{
|
||||
/// <summary>
|
||||
///文件文件夹路径表
|
||||
/// </summary>
|
||||
[Serializable, Table("MINIO_STORAGE_PATH")]
|
||||
public class MinioStoragePath
|
||||
{
|
||||
/// <summary>
|
||||
///主键ID
|
||||
/// </summary>
|
||||
[Persistent("PK", IsKey = true), DisplayName("主键ID")]
|
||||
public int Pk { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///子文件夹的父ID
|
||||
/// </summary>
|
||||
[Persistent("UPK"), DisplayName("子文件夹的父ID")]
|
||||
public int Upk { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件名称
|
||||
/// </summary>
|
||||
[Persistent("FILE_NAME"), DisplayName("文件名称")]
|
||||
public string FileName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件类型
|
||||
/// </summary>
|
||||
[Persistent("FILE_TYPE"), DisplayName("文件类型")]
|
||||
public int FileType { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///文件路径
|
||||
/// </summary>
|
||||
[Persistent("FILE_PATH"), DisplayName("文件路径")]
|
||||
public string FilePate { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建者
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_USER"), DisplayName("创建者")]
|
||||
public string CreatorUser { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建时间
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
||||
public DateTime? CreatorTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///下载次数
|
||||
/// </summary>
|
||||
[Persistent("DOWNLOAD_NUM"), DisplayName("下载次数")]
|
||||
public int DownloadNum { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///层级
|
||||
/// </summary>
|
||||
[Persistent("FILE_LEVEL"), DisplayName("层级")]
|
||||
public int FileLevel { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///修改用户
|
||||
/// </summary>
|
||||
[Persistent("MODIFY_USERS"), DisplayName("修改用户")]
|
||||
public string ModifyUsers { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///修改时间
|
||||
/// </summary>
|
||||
[Persistent("MODIFY_TIME"), DisplayName("修改时间")]
|
||||
public DateTime? ModifyTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
|
||||
public string AlternateFields { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SOA.Persistent;
|
||||
|
||||
namespace IBKLinker_Minio.Entity.MinioController
|
||||
{
|
||||
/// <summary>
|
||||
///minio用户表
|
||||
/// </summary>
|
||||
[Serializable, Table("MINIO_USER")]
|
||||
public class MinioUser
|
||||
{
|
||||
/// <summary>
|
||||
///用户ID
|
||||
/// </summary>
|
||||
[Persistent("USER_ID", IsKey = true), DisplayName("用户ID")]
|
||||
public int UserId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///用户姓名
|
||||
/// </summary>
|
||||
[Persistent("USER_NAME"), DisplayName("用户姓名")]
|
||||
public string UserName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///角色ID
|
||||
/// </summary>
|
||||
[Persistent("ROLE_ID"), DisplayName("角色ID")]
|
||||
public int RoleId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建人
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_USER"), DisplayName("创建人")]
|
||||
public string CreatorUser { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///状态
|
||||
/// </summary>
|
||||
[Persistent("STATE"), DisplayName("状态")]
|
||||
public int State { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///备用字段
|
||||
/// </summary>
|
||||
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
|
||||
public string AlternateFields { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///创建时间
|
||||
/// </summary>
|
||||
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
||||
public DateTime? CreatorTime { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-1.0.115.5" newVersion="1.0.115.5" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-1.0.115.5" newVersion="1.0.115.5" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.122.19.1, Culture=neutral, PublicKeyToken=89b483f429c47342" />
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.ReportingServices.Interfaces" publicKeyToken="89845dcd8080cc91" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<publisherPolicy apply="no" />
|
||||
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral" />
|
||||
<bindingRedirect oldVersion="4.121.0.0 - 4.65535.65535.65535" newVersion="4.122.19.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<entityFramework>
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||
<provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
|
||||
</providers>
|
||||
</entityFramework>
|
||||
<system.data>
|
||||
<DbProviderFactories>
|
||||
<remove invariant="System.Data.SQLite.EF6" />
|
||||
<add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6" />
|
||||
<remove invariant="System.Data.SQLite" />
|
||||
<add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
|
||||
<remove invariant="MySql.Data.MySqlClient" />
|
||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.12.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
|
||||
<remove invariant="Oracle.ManagedDataAccess.Client" />
|
||||
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.122.19.1, Culture=neutral, PublicKeyToken=89b483f429c47342" />
|
||||
</DbProviderFactories>
|
||||
</system.data>
|
||||
<oracle.manageddataaccess.client>
|
||||
<version number="*">
|
||||
<dataSources>
|
||||
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) " />
|
||||
</dataSources>
|
||||
</version>
|
||||
</oracle.manageddataaccess.client>
|
||||
</configuration>
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,105 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<section name="soa" type="SOA.Config.ConfigHandler, SOA.Core" />
|
||||
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
||||
</startup>
|
||||
<soa>
|
||||
<server>
|
||||
<channel name="http" host="localhost" port="8081"/>
|
||||
</server>
|
||||
<appService>
|
||||
<!--<service object="" active=""/>-->
|
||||
</appService>
|
||||
<registries>
|
||||
<!-- <registry id="center1" address="consul://172.15.199.50" port="8500" route="semi"/> -->
|
||||
</registries>
|
||||
<services>
|
||||
<service interface="timeservice" registry="center1" register="true" protocol="http"/>
|
||||
<!-- <service interface="ipd/SemiPlanApi" registry="center1" register="true" protocol="http"/> -->
|
||||
<!-- <service interface="ipd/IpdApi" registry="center1" register="true" protocol="http"/> -->
|
||||
<!--<service interface="kpi" registry="center1" register="true" protocol="http"/>-->
|
||||
</services>
|
||||
<!--<schedule>
|
||||
<job id="1" object="runSyncPlate" trigger="timer(1)" active="true"/>
|
||||
</schedule>-->
|
||||
<objects>
|
||||
<!--<object id="db" type="SOA.Persistent.OracleDataStore, SOA.Persistent" scope="prototype">
|
||||
<constructor-arg value="Data Source=(DESCRIPTION= (ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=47.103.104.33)(PORT=1521))) (CONNECT_DATA=(SERVICE_NAME=afmes))); User Id=meslg;Password=123;"/>
|
||||
</object>-->
|
||||
|
||||
<!--<object id="db" type="SOA.Persistent.OracleDataStore, SOA.Persistent" scope="prototype">
|
||||
<constructor-arg value="Data Source=(DESCRIPTION= (ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=172.15.88.212)(PORT=1521))) (CONNECT_DATA=(SERVICE_NAME=ORCL))); User Id=RDMS;Password=nerc;"/>
|
||||
</object>-->
|
||||
<object id="db" type="SOA.Persistent.OracleDataStore, SOA.Persistent" scope="prototype">
|
||||
<constructor-arg value="Data Source=(DESCRIPTION= (ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=172.15.88.212)(PORT=1521))) (CONNECT_DATA=(SERVICE_NAME=ORCL))); User Id=RDMS;Password=nerc;"/>
|
||||
</object>
|
||||
<!--<object id="db_1_21" type="SOA.Persistent.OracleDataStore, SOA.Persistent" scope="prototype">
|
||||
<constructor-arg value="Data Source=(DESCRIPTION= (ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=172.15.1.21)(PORT=1525))) (CONNECT_DATA=(SERVICE_NAME=ygcgx1))); User Id=DTGC;Password=JySzh)_20220715;"/>
|
||||
</object>
|
||||
<object id="myconn" type="SOA.Persistent.MySqlDataStore, SOA.Persistent" scope="prototype">
|
||||
<constructor-arg value="server=192.100.51.77;user=jgbkd2;database=mysql;password=jgbkd2; SslMode=none;"/>
|
||||
</object>
|
||||
<object id="qmsdb" type="SOA.Persistent.OracleDataStore, SOA.Persistent" scope="prototype">
|
||||
<constructor-arg value="Data Source=(DESCRIPTION= (ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=172.15.199.66)(PORT=1521))) (CONNECT_DATA=(SERVICE_NAME=qmsdb))); User Id=qms;Password=system;"/>
|
||||
</object>-->
|
||||
<!--<object id="cached" type="SOA.Cache.RedisCached, SOA.Core" scope="prototype">
|
||||
<constructor-arg value="192.168.10.92"/>
|
||||
</object>
|
||||
<object id="redis" type="SOA.Redis.RedisClient, SOA.Data" scope="prototype">
|
||||
<constructor-arg value="192.168.10.92"/>
|
||||
</object>-->
|
||||
<!--<object id="runSyncPlate" type="ibk.KPI.Service.runSyncPlate, iBKLinker.KPI.Service" scope="prototype"/> -->
|
||||
<!--<object id="cached" type="SOA.Cache.SimpleCached, SOA.Core"/>-->
|
||||
<!-- <object id="mq_client" type="SOA.MQ.Client.KafkaQueue, SOA.MQ.Client" scope="prototype"> -->
|
||||
<!-- <property name="Address" value="172.15.199.50,172.15.199.51,172.15.199.52"/> -->
|
||||
<!-- <property name="Group" value="PROD"/> -->
|
||||
<!-- </object> -->
|
||||
|
||||
<!-- <object id="DataReceiveService" type="ibk.IPD.DataReceiveService,iBKLinker.IPD.Service" scope="singleton"> -->
|
||||
<!-- <property name="Enable" value="1"/> -->
|
||||
<!-- </object> -->
|
||||
</objects>
|
||||
|
||||
</soa>
|
||||
<log4net>
|
||||
<appender name="ConsoleLogOutput" type="log4net.Appender.ConsoleAppender" >
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<conversionPattern value="[%-5level] %date [%-5.5thread] %logger - %message%newline" />
|
||||
</layout>
|
||||
</appender>
|
||||
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
|
||||
<file value=".\log\" />
|
||||
<appendToFile value="true" />
|
||||
<rollingStyle value="Date" />
|
||||
<param name="StaticLogFileName" value="false" />
|
||||
<datePattern value="yyyyMM\\'logfile'_yyyyMMdd.'log'" />
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
|
||||
</layout>
|
||||
</appender>
|
||||
<root>
|
||||
<appender-ref ref="ConsoleLogOutput" />
|
||||
<appender-ref ref="RollingLogFileAppender" />
|
||||
</root>
|
||||
</log4net>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Reactive.Linq</name>
|
||||
</assembly>
|
||||
<members>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6", FrameworkDisplayName = ".NET Framework 4.6")]
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
2789cd1e064d4bb2344014ef0c3c7d02f71bd0b3
|
@ -0,0 +1,53 @@
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\obj\Debug\IBKLinker-Minio.csproj.AssemblyReference.cache
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\obj\Debug\IBKLinker-Minio.csproj.CoreCompileInputs.cache
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\IBKLinker-Minio.dll.config
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\IBKLinker-Minio.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\IBKLinker-Minio.pdb
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\HtmlAgilityPack.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\log4net.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.Core.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.Data.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.Expression.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.Interfaces.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.License.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.MQ.Client.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.Persistent.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.ServiceHost.exe
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\Swashbuckle.Core.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Buffers.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Data.SQLite.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Memory.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Net.Http.Formatting.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Web.Http.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Web.Http.SelfHost.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\GenuineChannels.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\IBM.Data.DB2.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\Oracle.ManagedDataAccess.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\MySql.Data.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\HtmlAgilityPack.pdb
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\HtmlAgilityPack.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.Persistent.pdb
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.Persistent.dll.config
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\SOA.ServiceHost.exe.config
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Buffers.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Data.SQLite.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Memory.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Net.Http.Formatting.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Web.Http.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Web.Http.SelfHost.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\obj\Debug\IBKLinker-Minio.csproj.CopyComplete
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\obj\Debug\IBKLinker-Minio.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\obj\Debug\IBKLinker-Minio.pdb
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\Minio.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\RestSharp.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Reactive.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Reactive.Linq.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\Minio.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Reactive.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\System.Reactive.Linq.xml
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\nunit.framework.dll
|
||||
D:\北京科技大学设计研究院\大冶特钢\开发环境\产品研发平台\大冶特钢研发管理平台后端minio代码\minio\IBKLinker-Minio\bin\Debug\nunit.framework.xml
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="HtmlAgilityPack" version="1.11.49" targetFramework="net46" />
|
||||
<package id="Minio" version="2.0.0" targetFramework="net46" />
|
||||
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net46" />
|
||||
<package id="NUnit" version="2.6.4" targetFramework="net46" />
|
||||
<package id="RestSharp" version="106.3.1" targetFramework="net46" />
|
||||
<package id="System.Reactive" version="4.0.0" targetFramework="net46" />
|
||||
<package id="System.Reactive.Linq" version="4.0.0" targetFramework="net46" />
|
||||
</packages>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue