提交代码
This commit is contained in:
parent
79e0fa73bc
commit
7fca28cc33
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<Use64BitIISExpress>false</Use64BitIISExpress>
|
<Use64BitIISExpress>false</Use64BitIISExpress>
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
<add verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" validate="false"/>
|
<add verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" validate="false"/>
|
||||||
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
|
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
|
||||||
</httpHandlers>
|
</httpHandlers>
|
||||||
<compilation debug="true" targetFramework="4.6.1"/>
|
<compilation debug="false" targetFramework="4.6.1"/>
|
||||||
<httpRuntime requestValidationMode="2.0" maxRequestLength="2147483647" executionTimeout="36000"/>
|
<httpRuntime requestValidationMode="2.0" maxRequestLength="2147483647" executionTimeout="36000"/>
|
||||||
<authentication mode="Forms">
|
<authentication mode="Forms">
|
||||||
<forms loginUrl="Login.aspx" name="PUBLISHERCOOKIE" protection="All" timeout="1440" path="/"/>
|
<forms loginUrl="Login.aspx" name="PUBLISHERCOOKIE" protection="All" timeout="1440" path="/"/>
|
||||||
|
|
|
@ -22,7 +22,7 @@ namespace Model
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
public partial class SGGLDB_WH : System.Data.Linq.DataContext
|
public partial class SGGLDB : System.Data.Linq.DataContext
|
||||||
{
|
{
|
||||||
|
|
||||||
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
|
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
|
||||||
|
@ -2527,25 +2527,25 @@ namespace Model
|
||||||
partial void DeleteZHGL_WorkHandoverDetail(ZHGL_WorkHandoverDetail instance);
|
partial void DeleteZHGL_WorkHandoverDetail(ZHGL_WorkHandoverDetail instance);
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public SGGLDB_WH(string connection) :
|
public SGGLDB(string connection) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
public SGGLDB_WH(System.Data.IDbConnection connection) :
|
public SGGLDB(System.Data.IDbConnection connection) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
public SGGLDB_WH(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
public SGGLDB(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
public SGGLDB_WH(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
public SGGLDB(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<Use64BitIISExpress />
|
<Use64BitIISExpress />
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
|
|
Loading…
Reference in New Issue