Compare commits
No commits in common. "61f0bbe0cb3561c557c439ed4a77267ce4345db2" and "022ab2d51479008dede31bcaabed554e8be3308b" have entirely different histories.
61f0bbe0cb
...
022ab2d514
|
@ -626,7 +626,6 @@
|
||||||
<Compile Include="JDGL\WBS\WbsSetMatchCostControlService.cs" />
|
<Compile Include="JDGL\WBS\WbsSetMatchCostControlService.cs" />
|
||||||
<Compile Include="JDGL\WBS\WbsSetService.cs" />
|
<Compile Include="JDGL\WBS\WbsSetService.cs" />
|
||||||
<Compile Include="JDGL\WBS\WorkloadStatisticsService.cs" />
|
<Compile Include="JDGL\WBS\WorkloadStatisticsService.cs" />
|
||||||
<Compile Include="MDM\MDMDataService.cs" />
|
|
||||||
<Compile Include="Notice\NoticeService.cs" />
|
<Compile Include="Notice\NoticeService.cs" />
|
||||||
<Compile Include="OfficeCheck\Check\CheckNoticeService.cs" />
|
<Compile Include="OfficeCheck\Check\CheckNoticeService.cs" />
|
||||||
<Compile Include="OfficeCheck\Check\CheckReportService.cs" />
|
<Compile Include="OfficeCheck\Check\CheckReportService.cs" />
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -170,130 +170,6 @@
|
||||||
Funs.DB.SubmitChanges();
|
Funs.DB.SubmitChanges();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public static string WuHuanMDMPath
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
var sysSet5 = (from x in Funs.DB.Sys_Set where x.SetName == "MDM接口地址" select x).ToList().FirstOrDefault();
|
|
||||||
if (sysSet5 != null)
|
|
||||||
{
|
|
||||||
_CNCECPath = sysSet5.SetValue;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_CNCECPath = "";
|
|
||||||
}
|
|
||||||
return _CNCECPath;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
_CNCECPath = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public static string WuHuanMDMToken
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
var sysSet5 = (from x in Funs.DB.Sys_Set where x.SetName == "MDMToken" select x).ToList().FirstOrDefault();
|
|
||||||
if (sysSet5 != null)
|
|
||||||
{
|
|
||||||
_CNCECToken = sysSet5.SetValue;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_CNCECToken = "";
|
|
||||||
}
|
|
||||||
return _CNCECToken;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public static string WuHuanMDMTokenExTime
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
var sysSet5 = (from x in Funs.DB.Sys_Set where x.SetName == "MDMTokenExTime" select x).ToList().FirstOrDefault();
|
|
||||||
if (sysSet5 != null)
|
|
||||||
{
|
|
||||||
_CNCECTokenExTime = sysSet5.SetValue;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_CNCECTokenExTime = "";
|
|
||||||
}
|
|
||||||
return _CNCECTokenExTime;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public static void SetWuHuanMDMToken(string token)
|
|
||||||
{
|
|
||||||
Model.Sys_Set sysSet = Funs.DB.Sys_Set.FirstOrDefault(x => x.SetName == "MDMToken");
|
|
||||||
if (sysSet != null)
|
|
||||||
{
|
|
||||||
if (!string.IsNullOrEmpty(token))
|
|
||||||
{
|
|
||||||
sysSet.SetValue = token;
|
|
||||||
}
|
|
||||||
Funs.DB.SubmitChanges();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Model.Sys_Set newSysSet5 = new Model.Sys_Set();
|
|
||||||
var q = (from x in Funs.DB.Sys_Set orderby x.SetId descending select x).FirstOrDefault();
|
|
||||||
if (q == null)
|
|
||||||
{
|
|
||||||
newSysSet5.SetId = 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
newSysSet5.SetId = q.SetId + 1;
|
|
||||||
}
|
|
||||||
if (!string.IsNullOrEmpty(token))
|
|
||||||
{
|
|
||||||
newSysSet5.SetValue = token;
|
|
||||||
}
|
|
||||||
newSysSet5.SetName = "MDMToken";
|
|
||||||
Funs.DB.Sys_Set.InsertOnSubmit(newSysSet5);
|
|
||||||
Funs.DB.SubmitChanges();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public static void SetWuHuanMDMTokenExpirationTime(string ExpirationTime)
|
|
||||||
{
|
|
||||||
Model.Sys_Set sysSet = Funs.DB.Sys_Set.FirstOrDefault(x => x.SetName == "MDMTokenExTime");
|
|
||||||
if (sysSet != null)
|
|
||||||
{
|
|
||||||
if (!string.IsNullOrEmpty(ExpirationTime))
|
|
||||||
{
|
|
||||||
sysSet.SetValue = ExpirationTime;
|
|
||||||
}
|
|
||||||
Funs.DB.SubmitChanges();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Model.Sys_Set newSysSet5 = new Model.Sys_Set();
|
|
||||||
var q = (from x in Funs.DB.Sys_Set orderby x.SetId descending select x).FirstOrDefault();
|
|
||||||
if (q == null)
|
|
||||||
{
|
|
||||||
newSysSet5.SetId = 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
newSysSet5.SetId = q.SetId + 1;
|
|
||||||
}
|
|
||||||
if (!string.IsNullOrEmpty(ExpirationTime))
|
|
||||||
{
|
|
||||||
newSysSet5.SetValue = ExpirationTime;
|
|
||||||
}
|
|
||||||
newSysSet5.SetName = "MDMTokenExTime";
|
|
||||||
Funs.DB.Sys_Set.InsertOnSubmit(newSysSet5);
|
|
||||||
Funs.DB.SubmitChanges();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取及格分数
|
/// 获取及格分数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -218,7 +218,6 @@ namespace BLL
|
||||||
PageSize = 10,
|
PageSize = 10,
|
||||||
IsOffice = user.IsOffice,
|
IsOffice = user.IsOffice,
|
||||||
Telephone = user.Telephone,
|
Telephone = user.Telephone,
|
||||||
Email = user.Email,
|
|
||||||
DataSources = user.DataSources,
|
DataSources = user.DataSources,
|
||||||
SignatureUrl = user.SignatureUrl,
|
SignatureUrl = user.SignatureUrl,
|
||||||
DepartId = user.DepartId,
|
DepartId = user.DepartId,
|
||||||
|
@ -269,7 +268,6 @@ namespace BLL
|
||||||
newUser.IsPost = user.IsPost;
|
newUser.IsPost = user.IsPost;
|
||||||
newUser.IsOffice = user.IsOffice;
|
newUser.IsOffice = user.IsOffice;
|
||||||
newUser.Telephone = user.Telephone;
|
newUser.Telephone = user.Telephone;
|
||||||
newUser.Email = user.Email;
|
|
||||||
newUser.SignatureUrl = user.SignatureUrl;
|
newUser.SignatureUrl = user.SignatureUrl;
|
||||||
newUser.DepartId = user.DepartId;
|
newUser.DepartId = user.DepartId;
|
||||||
newUser.MainCNProfessionalId = user.MainCNProfessionalId;
|
newUser.MainCNProfessionalId = user.MainCNProfessionalId;
|
||||||
|
@ -300,10 +298,6 @@ namespace BLL
|
||||||
newUser.IsPost = user.IsPost;
|
newUser.IsPost = user.IsPost;
|
||||||
newUser.IsOffice = user.IsOffice;
|
newUser.IsOffice = user.IsOffice;
|
||||||
newUser.Telephone = user.Telephone;
|
newUser.Telephone = user.Telephone;
|
||||||
if (!string.IsNullOrEmpty(user.Email))
|
|
||||||
{
|
|
||||||
newUser.Email = user.Email;
|
|
||||||
}
|
|
||||||
newUser.SignatureUrl = user.SignatureUrl;
|
newUser.SignatureUrl = user.SignatureUrl;
|
||||||
newUser.DepartId = user.DepartId;
|
newUser.DepartId = user.DepartId;
|
||||||
newUser.Politicalstatus = user.Politicalstatus;
|
newUser.Politicalstatus = user.Politicalstatus;
|
||||||
|
@ -345,10 +339,7 @@ namespace BLL
|
||||||
newUser.UserName = user.UserName;
|
newUser.UserName = user.UserName;
|
||||||
newUser.UserCode = user.UserCode;
|
newUser.UserCode = user.UserCode;
|
||||||
newUser.IdentityCard = user.IdentityCard;
|
newUser.IdentityCard = user.IdentityCard;
|
||||||
if (!string.IsNullOrEmpty(user.Email))
|
newUser.Email = user.Email;
|
||||||
{
|
|
||||||
newUser.Email = user.Email;
|
|
||||||
}
|
|
||||||
newUser.Telephone = user.Telephone;
|
newUser.Telephone = user.Telephone;
|
||||||
Funs.DB.SubmitChanges();
|
Funs.DB.SubmitChanges();
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
<asp:Label ID="Label2" runat="server" Text='<%# ConvertProgressDetail(Eval("GJSXID")) %>'></asp:Label>
|
<asp:Label ID="Label2" runat="server" Text='<%# ConvertProgressDetail(Eval("GJSXID")) %>'></asp:Label>
|
||||||
</ItemTemplate>
|
</ItemTemplate>
|
||||||
</f:TemplateField>
|
</f:TemplateField>
|
||||||
<f:RenderField Width="90px" ColumnID="StateStr" DataField="StateStr" SortField="StateStr"
|
<f:RenderField Width="90px" ColumnID="State" DataField="State" SortField="State"
|
||||||
FieldType="String" HeaderText="状态" HeaderTextAlign="Center" TextAlign="Left">
|
FieldType="String" HeaderText="状态" HeaderTextAlign="Center" TextAlign="Left">
|
||||||
</f:RenderField>
|
</f:RenderField>
|
||||||
<f:RenderField Width="150px" ColumnID="CreateDate" DataField="CreateDate" SortField="CreateDate"
|
<f:RenderField Width="150px" ColumnID="CreateDate" DataField="CreateDate" SortField="CreateDate"
|
||||||
|
|
|
@ -151,8 +151,6 @@
|
||||||
</f:RadioButtonList>
|
</f:RadioButtonList>
|
||||||
<f:TextBox ID="txtOutResult" runat="server" Label="出场原因" LabelAlign="Right" MaxLength="50">
|
<f:TextBox ID="txtOutResult" runat="server" Label="出场原因" LabelAlign="Right" MaxLength="50">
|
||||||
</f:TextBox>
|
</f:TextBox>
|
||||||
<f:TextBox ID="txtEmail" runat="server" Label="邮箱" RegexPattern="EMAIL" LabelAlign="Right" MaxLength="50">
|
|
||||||
</f:TextBox>
|
|
||||||
</Items>
|
</Items>
|
||||||
</f:Panel>
|
</f:Panel>
|
||||||
<f:Panel ID="Panel5" Title="面板1" BoxFlex="2" runat="server" ShowBorder="false" ShowHeader="false"
|
<f:Panel ID="Panel5" Title="面板1" BoxFlex="2" runat="server" ShowBorder="false" ShowHeader="false"
|
||||||
|
|
|
@ -165,7 +165,6 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
this.txtIdentityCard.Text = person.IdentityCard;
|
this.txtIdentityCard.Text = person.IdentityCard;
|
||||||
this.txtAddress.Text = person.Address;
|
this.txtAddress.Text = person.Address;
|
||||||
this.txtTelephone.Text = person.Telephone;
|
this.txtTelephone.Text = person.Telephone;
|
||||||
this.txtEmail.Text = person.Email;
|
|
||||||
this.txtOutResult.Text = person.OutResult;
|
this.txtOutResult.Text = person.OutResult;
|
||||||
if (person.IsForeign.HasValue)
|
if (person.IsForeign.HasValue)
|
||||||
{
|
{
|
||||||
|
@ -511,7 +510,6 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
}
|
}
|
||||||
person.Address = this.txtAddress.Text.Trim();
|
person.Address = this.txtAddress.Text.Trim();
|
||||||
person.Telephone = this.txtTelephone.Text.Trim();
|
person.Telephone = this.txtTelephone.Text.Trim();
|
||||||
person.Email = this.txtEmail.Text.Trim();
|
|
||||||
person.OutResult = this.txtOutResult.Text.Trim();
|
person.OutResult = this.txtOutResult.Text.Trim();
|
||||||
if (!string.IsNullOrEmpty(this.txtInTime.Text.Trim()))
|
if (!string.IsNullOrEmpty(this.txtInTime.Text.Trim()))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,13 +7,11 @@
|
||||||
// </自动生成>
|
// </自动生成>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace FineUIPro.Web.HSSE.SitePerson
|
namespace FineUIPro.Web.HSSE.SitePerson {
|
||||||
{
|
|
||||||
|
|
||||||
|
public partial class PersonListEdit {
|
||||||
public partial class PersonListEdit
|
|
||||||
{
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// form1 控件。
|
/// form1 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -22,7 +20,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
|
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// PageManager1 控件。
|
/// PageManager1 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -31,7 +29,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.PageManager PageManager1;
|
protected global::FineUIPro.PageManager PageManager1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Panel3 控件。
|
/// Panel3 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -40,7 +38,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Panel Panel3;
|
protected global::FineUIPro.Panel Panel3;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Toolbar2 控件。
|
/// Toolbar2 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -49,7 +47,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Toolbar Toolbar2;
|
protected global::FineUIPro.Toolbar Toolbar2;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnAttachUrl1 控件。
|
/// btnAttachUrl1 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -58,7 +56,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnAttachUrl1;
|
protected global::FineUIPro.Button btnAttachUrl1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnAttachUrl5 控件。
|
/// btnAttachUrl5 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -67,7 +65,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnAttachUrl5;
|
protected global::FineUIPro.Button btnAttachUrl5;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnAttachUrl2 控件。
|
/// btnAttachUrl2 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -76,7 +74,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnAttachUrl2;
|
protected global::FineUIPro.Button btnAttachUrl2;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnAttachUrl3 控件。
|
/// btnAttachUrl3 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -85,7 +83,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnAttachUrl3;
|
protected global::FineUIPro.Button btnAttachUrl3;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnAttachUrl4 控件。
|
/// btnAttachUrl4 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -94,7 +92,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnAttachUrl4;
|
protected global::FineUIPro.Button btnAttachUrl4;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnSave 控件。
|
/// btnSave 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -103,7 +101,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnSave;
|
protected global::FineUIPro.Button btnSave;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnQR 控件。
|
/// btnQR 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -112,7 +110,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnQR;
|
protected global::FineUIPro.Button btnQR;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnClose 控件。
|
/// btnClose 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -121,7 +119,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnClose;
|
protected global::FineUIPro.Button btnClose;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// TabStrip1 控件。
|
/// TabStrip1 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -130,7 +128,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TabStrip TabStrip1;
|
protected global::FineUIPro.TabStrip TabStrip1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tab1 控件。
|
/// Tab1 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -139,7 +137,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Tab Tab1;
|
protected global::FineUIPro.Tab Tab1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Panel2 控件。
|
/// Panel2 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -148,7 +146,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Panel Panel2;
|
protected global::FineUIPro.Panel Panel2;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Panel1 控件。
|
/// Panel1 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -157,7 +155,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Panel Panel1;
|
protected global::FineUIPro.Panel Panel1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtPersonName 控件。
|
/// txtPersonName 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -166,7 +164,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtPersonName;
|
protected global::FineUIPro.TextBox txtPersonName;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpIdcardType 控件。
|
/// drpIdcardType 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -175,7 +173,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpIdcardType;
|
protected global::FineUIPro.DropDownList drpIdcardType;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtIdentityCard 控件。
|
/// txtIdentityCard 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -184,7 +182,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtIdentityCard;
|
protected global::FineUIPro.TextBox txtIdentityCard;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtIdcardStartDate 控件。
|
/// txtIdcardStartDate 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -193,7 +191,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DatePicker txtIdcardStartDate;
|
protected global::FineUIPro.DatePicker txtIdcardStartDate;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtIdcardEndDate 控件。
|
/// txtIdcardEndDate 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -202,7 +200,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DatePicker txtIdcardEndDate;
|
protected global::FineUIPro.DatePicker txtIdcardEndDate;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtUnitName 控件。
|
/// txtUnitName 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -211,7 +209,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtUnitName;
|
protected global::FineUIPro.TextBox txtUnitName;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtWorkArea 控件。
|
/// txtWorkArea 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -220,7 +218,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownBox txtWorkArea;
|
protected global::FineUIPro.DropDownBox txtWorkArea;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// gvWorkArea 控件。
|
/// gvWorkArea 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -229,7 +227,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Grid gvWorkArea;
|
protected global::FineUIPro.Grid gvWorkArea;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpMainCNProfessional 控件。
|
/// drpMainCNProfessional 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -238,7 +236,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpMainCNProfessional;
|
protected global::FineUIPro.DropDownList drpMainCNProfessional;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpAuditor 控件。
|
/// drpAuditor 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -247,7 +245,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpAuditor;
|
protected global::FineUIPro.DropDownList drpAuditor;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ckIsForeign 控件。
|
/// ckIsForeign 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -256,7 +254,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.CheckBox ckIsForeign;
|
protected global::FineUIPro.CheckBox ckIsForeign;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtBirthday 控件。
|
/// txtBirthday 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -265,7 +263,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DatePicker txtBirthday;
|
protected global::FineUIPro.DatePicker txtBirthday;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtInTime 控件。
|
/// txtInTime 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -274,7 +272,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DatePicker txtInTime;
|
protected global::FineUIPro.DatePicker txtInTime;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtOutTime 控件。
|
/// txtOutTime 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -283,7 +281,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DatePicker txtOutTime;
|
protected global::FineUIPro.DatePicker txtOutTime;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ckIsSafetyMonitoring 控件。
|
/// ckIsSafetyMonitoring 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -292,7 +290,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.CheckBox ckIsSafetyMonitoring;
|
protected global::FineUIPro.CheckBox ckIsSafetyMonitoring;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Panel4 控件。
|
/// Panel4 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -301,7 +299,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Panel Panel4;
|
protected global::FineUIPro.Panel Panel4;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtCardNo 控件。
|
/// txtCardNo 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -310,7 +308,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtCardNo;
|
protected global::FineUIPro.TextBox txtCardNo;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// btnReadIdentityCard 控件。
|
/// btnReadIdentityCard 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -319,7 +317,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Button btnReadIdentityCard;
|
protected global::FineUIPro.Button btnReadIdentityCard;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// rblSex 控件。
|
/// rblSex 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -328,7 +326,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.RadioButtonList rblSex;
|
protected global::FineUIPro.RadioButtonList rblSex;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// rblIdcardForever 控件。
|
/// rblIdcardForever 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -337,7 +335,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.RadioButtonList rblIdcardForever;
|
protected global::FineUIPro.RadioButtonList rblIdcardForever;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtIdcardAddress 控件。
|
/// txtIdcardAddress 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -346,7 +344,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtIdcardAddress;
|
protected global::FineUIPro.TextBox txtIdcardAddress;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpPost 控件。
|
/// drpPost 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -355,7 +353,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpPost;
|
protected global::FineUIPro.DropDownList drpPost;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpTeamGroup 控件。
|
/// drpTeamGroup 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -364,7 +362,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpTeamGroup;
|
protected global::FineUIPro.DropDownList drpTeamGroup;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpViceCNProfessional 控件。
|
/// drpViceCNProfessional 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -373,7 +371,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpViceCNProfessional;
|
protected global::FineUIPro.DropDownList drpViceCNProfessional;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtAuditorDate 控件。
|
/// txtAuditorDate 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -382,7 +380,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DatePicker txtAuditorDate;
|
protected global::FineUIPro.DatePicker txtAuditorDate;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ckIsOutside 控件。
|
/// ckIsOutside 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -391,7 +389,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.CheckBox ckIsOutside;
|
protected global::FineUIPro.CheckBox ckIsOutside;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtTelephone 控件。
|
/// txtTelephone 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -400,7 +398,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtTelephone;
|
protected global::FineUIPro.TextBox txtTelephone;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// rblIsUsed 控件。
|
/// rblIsUsed 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -409,7 +407,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.RadioButtonList rblIsUsed;
|
protected global::FineUIPro.RadioButtonList rblIsUsed;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtOutResult 控件。
|
/// txtOutResult 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -418,16 +416,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtOutResult;
|
protected global::FineUIPro.TextBox txtOutResult;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// txtEmail 控件。
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// 自动生成的字段。
|
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|
||||||
/// </remarks>
|
|
||||||
protected global::FineUIPro.TextBox txtEmail;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Panel5 控件。
|
/// Panel5 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -436,7 +425,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Panel Panel5;
|
protected global::FineUIPro.Panel Panel5;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// imgPhoto 控件。
|
/// imgPhoto 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -445,7 +434,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Image imgPhoto;
|
protected global::FineUIPro.Image imgPhoto;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// filePhoto 控件。
|
/// filePhoto 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -454,7 +443,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.FileUpload filePhoto;
|
protected global::FineUIPro.FileUpload filePhoto;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tab2 控件。
|
/// Tab2 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -463,7 +452,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Tab Tab2;
|
protected global::FineUIPro.Tab Tab2;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Form7 控件。
|
/// Form7 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -472,7 +461,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Form Form7;
|
protected global::FineUIPro.Form Form7;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpPosition 控件。
|
/// drpPosition 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -481,7 +470,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpPosition;
|
protected global::FineUIPro.DropDownList drpPosition;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpTitle 控件。
|
/// drpTitle 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -490,7 +479,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpTitle;
|
protected global::FineUIPro.DropDownList drpTitle;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpEduLevel 控件。
|
/// drpEduLevel 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -499,7 +488,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpEduLevel;
|
protected global::FineUIPro.DropDownList drpEduLevel;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpMaritalStatus 控件。
|
/// drpMaritalStatus 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -508,7 +497,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpMaritalStatus;
|
protected global::FineUIPro.DropDownList drpMaritalStatus;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpPoliticsStatus 控件。
|
/// drpPoliticsStatus 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -517,7 +506,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpPoliticsStatus;
|
protected global::FineUIPro.DropDownList drpPoliticsStatus;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpNation 控件。
|
/// drpNation 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -526,7 +515,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpNation;
|
protected global::FineUIPro.DropDownList drpNation;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpCountryCode 控件。
|
/// drpCountryCode 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -535,7 +524,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpCountryCode;
|
protected global::FineUIPro.DropDownList drpCountryCode;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpProvinceCode 控件。
|
/// drpProvinceCode 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -544,7 +533,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpProvinceCode;
|
protected global::FineUIPro.DropDownList drpProvinceCode;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// drpCertificate 控件。
|
/// drpCertificate 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -553,7 +542,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList drpCertificate;
|
protected global::FineUIPro.DropDownList drpCertificate;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtCertificateCode 控件。
|
/// txtCertificateCode 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -562,7 +551,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtCertificateCode;
|
protected global::FineUIPro.TextBox txtCertificateCode;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtCertificateLimitTime 控件。
|
/// txtCertificateLimitTime 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -571,7 +560,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DatePicker txtCertificateLimitTime;
|
protected global::FineUIPro.DatePicker txtCertificateLimitTime;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// rblIsCardUsed 控件。
|
/// rblIsCardUsed 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -580,7 +569,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.RadioButtonList rblIsCardUsed;
|
protected global::FineUIPro.RadioButtonList rblIsCardUsed;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtAddress 控件。
|
/// txtAddress 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -589,7 +578,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtAddress;
|
protected global::FineUIPro.TextBox txtAddress;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Window1 控件。
|
/// Window1 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -598,7 +587,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.Window Window1;
|
protected global::FineUIPro.Window Window1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// WindowAtt 控件。
|
/// WindowAtt 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -32,14 +32,8 @@
|
||||||
<f:TextBox ID="txtIdentityCard" runat="server" Label="身份证号" MaxLength="50" ShowRedStar="true" Required="true"
|
<f:TextBox ID="txtIdentityCard" runat="server" Label="身份证号" MaxLength="50" ShowRedStar="true" Required="true"
|
||||||
LabelWidth="90px" RegexPattern="IDENTITY_CARD">
|
LabelWidth="90px" RegexPattern="IDENTITY_CARD">
|
||||||
</f:TextBox>
|
</f:TextBox>
|
||||||
</Items>
|
|
||||||
</f:FormRow>
|
|
||||||
<f:FormRow>
|
|
||||||
<Items>
|
|
||||||
<f:TextBox ID="txtTelephone" runat="server" Label="手机号码" MaxLength="50" LabelWidth="90px">
|
<f:TextBox ID="txtTelephone" runat="server" Label="手机号码" MaxLength="50" LabelWidth="90px">
|
||||||
</f:TextBox>
|
</f:TextBox>
|
||||||
<f:TextBox ID="txtEmail" runat="server" Label="邮箱" RegexPattern="EMAIL" MaxLength="50" LabelWidth="90px">
|
|
||||||
</f:TextBox>
|
|
||||||
</Items>
|
</Items>
|
||||||
</f:FormRow>
|
</f:FormRow>
|
||||||
<f:FormRow runat="server" ID="trServer">
|
<f:FormRow runat="server" ID="trServer">
|
||||||
|
|
|
@ -110,7 +110,6 @@ namespace FineUIPro.Web.SysManage
|
||||||
this.drpIsPost.SelectedValue = Convert.ToString(user.IsPost);
|
this.drpIsPost.SelectedValue = Convert.ToString(user.IsPost);
|
||||||
}
|
}
|
||||||
this.txtTelephone.Text = user.Telephone;
|
this.txtTelephone.Text = user.Telephone;
|
||||||
this.txtEmail.Text = user.Email;
|
|
||||||
if (user.IsOffice == true)
|
if (user.IsOffice == true)
|
||||||
{
|
{
|
||||||
this.drpIsOffice.SelectedValue = "True";
|
this.drpIsOffice.SelectedValue = "True";
|
||||||
|
@ -200,7 +199,6 @@ namespace FineUIPro.Web.SysManage
|
||||||
Account = this.txtAccount.Text.Trim(),
|
Account = this.txtAccount.Text.Trim(),
|
||||||
IdentityCard = this.txtIdentityCard.Text.Trim(),
|
IdentityCard = this.txtIdentityCard.Text.Trim(),
|
||||||
Telephone = this.txtTelephone.Text.Trim(),
|
Telephone = this.txtTelephone.Text.Trim(),
|
||||||
Email = this.txtEmail.Text.Trim(),
|
|
||||||
};
|
};
|
||||||
if (this.drpUnit.SelectedValue != Const._Null)
|
if (this.drpUnit.SelectedValue != Const._Null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -95,15 +95,6 @@ namespace FineUIPro.Web.SysManage
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtTelephone;
|
protected global::FineUIPro.TextBox txtTelephone;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// txtEmail 控件。
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// 自动生成的字段。
|
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|
||||||
/// </remarks>
|
|
||||||
protected global::FineUIPro.TextBox txtEmail;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// trServer 控件。
|
/// trServer 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -1,217 +0,0 @@
|
||||||
// <auto-generated />
|
|
||||||
//
|
|
||||||
// To parse this JSON data, add NuGet 'Newtonsoft.Json' then do:
|
|
||||||
//
|
|
||||||
// using Model;
|
|
||||||
//
|
|
||||||
// var response = Response.FromJson(jsonString);
|
|
||||||
|
|
||||||
|
|
||||||
namespace Model
|
|
||||||
{
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
using System.Globalization;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using Newtonsoft.Json.Converters;
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 项目
|
|
||||||
/// </summary>
|
|
||||||
public partial class MdmResponseData
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 返回状态
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("code")]
|
|
||||||
public int code { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 数组总条数
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("total")]
|
|
||||||
public int total { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 权限数组
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("data")]
|
|
||||||
public ResponseData data { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 返回状态
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("rows")]
|
|
||||||
public System.Collections.Generic.List<MdmProject> rows { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 返回消息
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("msg")]
|
|
||||||
public string msg { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public partial class ResponseData
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 权限信息
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("userColumnPermissions")]
|
|
||||||
public string userColumnPermissions { get; set; }
|
|
||||||
}
|
|
||||||
/// <summary>
|
|
||||||
/// 项目
|
|
||||||
/// </summary>
|
|
||||||
public partial class MdmProject
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 主键ID
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("id")]
|
|
||||||
public int id { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目ID
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("code")]
|
|
||||||
public string code { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目号(源头)
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("stNum")]
|
|
||||||
public string stNum { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 操作类型
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("disType")]
|
|
||||||
public string disType { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 名称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("name")]
|
|
||||||
public string name { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目简称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("projShortName")]
|
|
||||||
public string projShortName { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目阶段编码
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("projStepZxnoCode")]
|
|
||||||
public string projStepZxnoCode { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目阶段名称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("projStepZxnoName")]
|
|
||||||
public string projStepZxnoName { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目类型一级
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("stProjectTypeVals")]
|
|
||||||
public string stProjectTypeVals { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目类型二级
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("stProjectStepVals")]
|
|
||||||
public string stProjectStepVals { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目阶段
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("projStepZxnoVals")]
|
|
||||||
public string projStepZxnoVals { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目性质
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("stProjectPropertyVals")]
|
|
||||||
public string stProjectPropertyVals { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 备注3_新系统项目ID
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("remarkC")]
|
|
||||||
public string remarkC { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 详细地址
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("address")]
|
|
||||||
public string address { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 市编码
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("cityCode")]
|
|
||||||
public string cityCode { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 市名称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("cityName")]
|
|
||||||
public string cityName { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 国家编码
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("countryCode")]
|
|
||||||
public string countryCode { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 国家名称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("countryName")]
|
|
||||||
public string countryName { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 区县编码
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("countyCode")]
|
|
||||||
public string countyCode { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 区县名称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("countyName")]
|
|
||||||
public string countyName { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 项目英文名称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("projectNameEn")]
|
|
||||||
public string projectNameEn { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 省编码
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("provinceCode")]
|
|
||||||
public string provinceCode { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 省名称
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("provinceName")]
|
|
||||||
public string provinceName { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 经度
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("remarkA")]
|
|
||||||
public string remarkA { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 纬度
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("remarkB")]
|
|
||||||
public string remarkB { get; set; }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class MdmResponseData
|
|
||||||
{
|
|
||||||
public static MdmResponseData FromJson(string json)
|
|
||||||
{
|
|
||||||
return JsonConvert.DeserializeObject<MdmResponseData>(json, Model.Converter.Settings);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static class Converter
|
|
||||||
{
|
|
||||||
public static readonly JsonSerializerSettings Settings = new JsonSerializerSettings
|
|
||||||
{
|
|
||||||
MetadataPropertyHandling = MetadataPropertyHandling.Ignore,
|
|
||||||
DateParseHandling = DateParseHandling.None,
|
|
||||||
Converters =
|
|
||||||
{
|
|
||||||
new IsoDateTimeConverter { DateTimeStyles = DateTimeStyles.AssumeUniversal }
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1646,9 +1646,6 @@ namespace Model
|
||||||
partial void InsertManager_TrainSortC(Manager_TrainSortC instance);
|
partial void InsertManager_TrainSortC(Manager_TrainSortC instance);
|
||||||
partial void UpdateManager_TrainSortC(Manager_TrainSortC instance);
|
partial void UpdateManager_TrainSortC(Manager_TrainSortC instance);
|
||||||
partial void DeleteManager_TrainSortC(Manager_TrainSortC instance);
|
partial void DeleteManager_TrainSortC(Manager_TrainSortC instance);
|
||||||
partial void InsertMDM_Project(MDM_Project instance);
|
|
||||||
partial void UpdateMDM_Project(MDM_Project instance);
|
|
||||||
partial void DeleteMDM_Project(MDM_Project instance);
|
|
||||||
partial void InsertMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
partial void InsertMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
||||||
partial void UpdateMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
partial void UpdateMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
||||||
partial void DeleteMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
partial void DeleteMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
||||||
|
@ -7138,14 +7135,6 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public System.Data.Linq.Table<MDM_Project> MDM_Project
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this.GetTable<MDM_Project>();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public System.Data.Linq.Table<Meeting_AttendMeeting> Meeting_AttendMeeting
|
public System.Data.Linq.Table<Meeting_AttendMeeting> Meeting_AttendMeeting
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -263511,668 +263500,6 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.MDM_Project")]
|
|
||||||
public partial class MDM_Project : INotifyPropertyChanging, INotifyPropertyChanged
|
|
||||||
{
|
|
||||||
|
|
||||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
|
||||||
|
|
||||||
private int _Id;
|
|
||||||
|
|
||||||
private string _Code;
|
|
||||||
|
|
||||||
private string _StNum;
|
|
||||||
|
|
||||||
private string _DisType;
|
|
||||||
|
|
||||||
private string _Name;
|
|
||||||
|
|
||||||
private string _ProjShortName;
|
|
||||||
|
|
||||||
private string _ProjStepZxnoCode;
|
|
||||||
|
|
||||||
private string _ProjStepZxnoName;
|
|
||||||
|
|
||||||
private string _StProjectTypeVals;
|
|
||||||
|
|
||||||
private string _StProjectStepVals;
|
|
||||||
|
|
||||||
private string _ProjStepZxnoVals;
|
|
||||||
|
|
||||||
private string _StProjectPropertyVals;
|
|
||||||
|
|
||||||
private string _RemarkC;
|
|
||||||
|
|
||||||
private string _Address;
|
|
||||||
|
|
||||||
private string _CityCode;
|
|
||||||
|
|
||||||
private string _CityName;
|
|
||||||
|
|
||||||
private string _CountryCode;
|
|
||||||
|
|
||||||
private string _CountryName;
|
|
||||||
|
|
||||||
private string _CountyCode;
|
|
||||||
|
|
||||||
private string _CountyName;
|
|
||||||
|
|
||||||
private string _ProjectNameEn;
|
|
||||||
|
|
||||||
private string _ProvinceCode;
|
|
||||||
|
|
||||||
private string _ProvinceName;
|
|
||||||
|
|
||||||
private string _RemarkA;
|
|
||||||
|
|
||||||
private string _RemarkB;
|
|
||||||
|
|
||||||
private System.DateTime _CreateTime;
|
|
||||||
|
|
||||||
#region 可扩展性方法定义
|
|
||||||
partial void OnLoaded();
|
|
||||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
|
||||||
partial void OnCreated();
|
|
||||||
partial void OnIdChanging(int value);
|
|
||||||
partial void OnIdChanged();
|
|
||||||
partial void OnCodeChanging(string value);
|
|
||||||
partial void OnCodeChanged();
|
|
||||||
partial void OnStNumChanging(string value);
|
|
||||||
partial void OnStNumChanged();
|
|
||||||
partial void OnDisTypeChanging(string value);
|
|
||||||
partial void OnDisTypeChanged();
|
|
||||||
partial void OnNameChanging(string value);
|
|
||||||
partial void OnNameChanged();
|
|
||||||
partial void OnProjShortNameChanging(string value);
|
|
||||||
partial void OnProjShortNameChanged();
|
|
||||||
partial void OnProjStepZxnoCodeChanging(string value);
|
|
||||||
partial void OnProjStepZxnoCodeChanged();
|
|
||||||
partial void OnProjStepZxnoNameChanging(string value);
|
|
||||||
partial void OnProjStepZxnoNameChanged();
|
|
||||||
partial void OnStProjectTypeValsChanging(string value);
|
|
||||||
partial void OnStProjectTypeValsChanged();
|
|
||||||
partial void OnStProjectStepValsChanging(string value);
|
|
||||||
partial void OnStProjectStepValsChanged();
|
|
||||||
partial void OnProjStepZxnoValsChanging(string value);
|
|
||||||
partial void OnProjStepZxnoValsChanged();
|
|
||||||
partial void OnStProjectPropertyValsChanging(string value);
|
|
||||||
partial void OnStProjectPropertyValsChanged();
|
|
||||||
partial void OnRemarkCChanging(string value);
|
|
||||||
partial void OnRemarkCChanged();
|
|
||||||
partial void OnAddressChanging(string value);
|
|
||||||
partial void OnAddressChanged();
|
|
||||||
partial void OnCityCodeChanging(string value);
|
|
||||||
partial void OnCityCodeChanged();
|
|
||||||
partial void OnCityNameChanging(string value);
|
|
||||||
partial void OnCityNameChanged();
|
|
||||||
partial void OnCountryCodeChanging(string value);
|
|
||||||
partial void OnCountryCodeChanged();
|
|
||||||
partial void OnCountryNameChanging(string value);
|
|
||||||
partial void OnCountryNameChanged();
|
|
||||||
partial void OnCountyCodeChanging(string value);
|
|
||||||
partial void OnCountyCodeChanged();
|
|
||||||
partial void OnCountyNameChanging(string value);
|
|
||||||
partial void OnCountyNameChanged();
|
|
||||||
partial void OnProjectNameEnChanging(string value);
|
|
||||||
partial void OnProjectNameEnChanged();
|
|
||||||
partial void OnProvinceCodeChanging(string value);
|
|
||||||
partial void OnProvinceCodeChanged();
|
|
||||||
partial void OnProvinceNameChanging(string value);
|
|
||||||
partial void OnProvinceNameChanged();
|
|
||||||
partial void OnRemarkAChanging(string value);
|
|
||||||
partial void OnRemarkAChanged();
|
|
||||||
partial void OnRemarkBChanging(string value);
|
|
||||||
partial void OnRemarkBChanged();
|
|
||||||
partial void OnCreateTimeChanging(System.DateTime value);
|
|
||||||
partial void OnCreateTimeChanged();
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
public MDM_Project()
|
|
||||||
{
|
|
||||||
OnCreated();
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="id", Storage="_Id", DbType="Int NOT NULL", IsPrimaryKey=true)]
|
|
||||||
public int Id
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._Id;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._Id != value))
|
|
||||||
{
|
|
||||||
this.OnIdChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._Id = value;
|
|
||||||
this.SendPropertyChanged("Id");
|
|
||||||
this.OnIdChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="code", Storage="_Code", DbType="NVarChar(100) NOT NULL", CanBeNull=false)]
|
|
||||||
public string Code
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._Code;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._Code != value))
|
|
||||||
{
|
|
||||||
this.OnCodeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._Code = value;
|
|
||||||
this.SendPropertyChanged("Code");
|
|
||||||
this.OnCodeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stNum", Storage="_StNum", DbType="NVarChar(100) NOT NULL", CanBeNull=false)]
|
|
||||||
public string StNum
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._StNum;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._StNum != value))
|
|
||||||
{
|
|
||||||
this.OnStNumChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._StNum = value;
|
|
||||||
this.SendPropertyChanged("StNum");
|
|
||||||
this.OnStNumChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="disType", Storage="_DisType", DbType="NVarChar(100)")]
|
|
||||||
public string DisType
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._DisType;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._DisType != value))
|
|
||||||
{
|
|
||||||
this.OnDisTypeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._DisType = value;
|
|
||||||
this.SendPropertyChanged("DisType");
|
|
||||||
this.OnDisTypeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="name", Storage="_Name", DbType="NVarChar(200) NOT NULL", CanBeNull=false)]
|
|
||||||
public string Name
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._Name;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._Name != value))
|
|
||||||
{
|
|
||||||
this.OnNameChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._Name = value;
|
|
||||||
this.SendPropertyChanged("Name");
|
|
||||||
this.OnNameChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projShortName", Storage="_ProjShortName", DbType="NVarChar(100)")]
|
|
||||||
public string ProjShortName
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ProjShortName;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ProjShortName != value))
|
|
||||||
{
|
|
||||||
this.OnProjShortNameChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ProjShortName = value;
|
|
||||||
this.SendPropertyChanged("ProjShortName");
|
|
||||||
this.OnProjShortNameChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projStepZxnoCode", Storage="_ProjStepZxnoCode", DbType="NVarChar(100)")]
|
|
||||||
public string ProjStepZxnoCode
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ProjStepZxnoCode;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ProjStepZxnoCode != value))
|
|
||||||
{
|
|
||||||
this.OnProjStepZxnoCodeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ProjStepZxnoCode = value;
|
|
||||||
this.SendPropertyChanged("ProjStepZxnoCode");
|
|
||||||
this.OnProjStepZxnoCodeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projStepZxnoName", Storage="_ProjStepZxnoName", DbType="NVarChar(100)")]
|
|
||||||
public string ProjStepZxnoName
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ProjStepZxnoName;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ProjStepZxnoName != value))
|
|
||||||
{
|
|
||||||
this.OnProjStepZxnoNameChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ProjStepZxnoName = value;
|
|
||||||
this.SendPropertyChanged("ProjStepZxnoName");
|
|
||||||
this.OnProjStepZxnoNameChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stProjectTypeVals", Storage="_StProjectTypeVals", DbType="NVarChar(100)")]
|
|
||||||
public string StProjectTypeVals
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._StProjectTypeVals;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._StProjectTypeVals != value))
|
|
||||||
{
|
|
||||||
this.OnStProjectTypeValsChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._StProjectTypeVals = value;
|
|
||||||
this.SendPropertyChanged("StProjectTypeVals");
|
|
||||||
this.OnStProjectTypeValsChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stProjectStepVals", Storage="_StProjectStepVals", DbType="NVarChar(100)")]
|
|
||||||
public string StProjectStepVals
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._StProjectStepVals;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._StProjectStepVals != value))
|
|
||||||
{
|
|
||||||
this.OnStProjectStepValsChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._StProjectStepVals = value;
|
|
||||||
this.SendPropertyChanged("StProjectStepVals");
|
|
||||||
this.OnStProjectStepValsChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projStepZxnoVals", Storage="_ProjStepZxnoVals", DbType="NVarChar(100)")]
|
|
||||||
public string ProjStepZxnoVals
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ProjStepZxnoVals;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ProjStepZxnoVals != value))
|
|
||||||
{
|
|
||||||
this.OnProjStepZxnoValsChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ProjStepZxnoVals = value;
|
|
||||||
this.SendPropertyChanged("ProjStepZxnoVals");
|
|
||||||
this.OnProjStepZxnoValsChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stProjectPropertyVals", Storage="_StProjectPropertyVals", DbType="NVarChar(100)")]
|
|
||||||
public string StProjectPropertyVals
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._StProjectPropertyVals;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._StProjectPropertyVals != value))
|
|
||||||
{
|
|
||||||
this.OnStProjectPropertyValsChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._StProjectPropertyVals = value;
|
|
||||||
this.SendPropertyChanged("StProjectPropertyVals");
|
|
||||||
this.OnStProjectPropertyValsChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="remarkC", Storage="_RemarkC", DbType="NVarChar(100)")]
|
|
||||||
public string RemarkC
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._RemarkC;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._RemarkC != value))
|
|
||||||
{
|
|
||||||
this.OnRemarkCChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._RemarkC = value;
|
|
||||||
this.SendPropertyChanged("RemarkC");
|
|
||||||
this.OnRemarkCChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="address", Storage="_Address", DbType="NVarChar(500)")]
|
|
||||||
public string Address
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._Address;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._Address != value))
|
|
||||||
{
|
|
||||||
this.OnAddressChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._Address = value;
|
|
||||||
this.SendPropertyChanged("Address");
|
|
||||||
this.OnAddressChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="cityCode", Storage="_CityCode", DbType="NVarChar(100)")]
|
|
||||||
public string CityCode
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._CityCode;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._CityCode != value))
|
|
||||||
{
|
|
||||||
this.OnCityCodeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._CityCode = value;
|
|
||||||
this.SendPropertyChanged("CityCode");
|
|
||||||
this.OnCityCodeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="cityName", Storage="_CityName", DbType="NVarChar(100)")]
|
|
||||||
public string CityName
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._CityName;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._CityName != value))
|
|
||||||
{
|
|
||||||
this.OnCityNameChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._CityName = value;
|
|
||||||
this.SendPropertyChanged("CityName");
|
|
||||||
this.OnCityNameChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="countryCode", Storage="_CountryCode", DbType="NVarChar(100)")]
|
|
||||||
public string CountryCode
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._CountryCode;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._CountryCode != value))
|
|
||||||
{
|
|
||||||
this.OnCountryCodeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._CountryCode = value;
|
|
||||||
this.SendPropertyChanged("CountryCode");
|
|
||||||
this.OnCountryCodeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="countryName", Storage="_CountryName", DbType="NVarChar(100)")]
|
|
||||||
public string CountryName
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._CountryName;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._CountryName != value))
|
|
||||||
{
|
|
||||||
this.OnCountryNameChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._CountryName = value;
|
|
||||||
this.SendPropertyChanged("CountryName");
|
|
||||||
this.OnCountryNameChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="countyCode", Storage="_CountyCode", DbType="NVarChar(100)")]
|
|
||||||
public string CountyCode
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._CountyCode;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._CountyCode != value))
|
|
||||||
{
|
|
||||||
this.OnCountyCodeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._CountyCode = value;
|
|
||||||
this.SendPropertyChanged("CountyCode");
|
|
||||||
this.OnCountyCodeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="countyName", Storage="_CountyName", DbType="NVarChar(100)")]
|
|
||||||
public string CountyName
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._CountyName;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._CountyName != value))
|
|
||||||
{
|
|
||||||
this.OnCountyNameChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._CountyName = value;
|
|
||||||
this.SendPropertyChanged("CountyName");
|
|
||||||
this.OnCountyNameChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projectNameEn", Storage="_ProjectNameEn", DbType="NVarChar(500)")]
|
|
||||||
public string ProjectNameEn
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ProjectNameEn;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ProjectNameEn != value))
|
|
||||||
{
|
|
||||||
this.OnProjectNameEnChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ProjectNameEn = value;
|
|
||||||
this.SendPropertyChanged("ProjectNameEn");
|
|
||||||
this.OnProjectNameEnChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="provinceCode", Storage="_ProvinceCode", DbType="NVarChar(100)")]
|
|
||||||
public string ProvinceCode
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ProvinceCode;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ProvinceCode != value))
|
|
||||||
{
|
|
||||||
this.OnProvinceCodeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ProvinceCode = value;
|
|
||||||
this.SendPropertyChanged("ProvinceCode");
|
|
||||||
this.OnProvinceCodeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="provinceName", Storage="_ProvinceName", DbType="NVarChar(100)")]
|
|
||||||
public string ProvinceName
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ProvinceName;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ProvinceName != value))
|
|
||||||
{
|
|
||||||
this.OnProvinceNameChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ProvinceName = value;
|
|
||||||
this.SendPropertyChanged("ProvinceName");
|
|
||||||
this.OnProvinceNameChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="remarkA", Storage="_RemarkA", DbType="NVarChar(100)")]
|
|
||||||
public string RemarkA
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._RemarkA;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._RemarkA != value))
|
|
||||||
{
|
|
||||||
this.OnRemarkAChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._RemarkA = value;
|
|
||||||
this.SendPropertyChanged("RemarkA");
|
|
||||||
this.OnRemarkAChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="remarkB", Storage="_RemarkB", DbType="NVarChar(100)")]
|
|
||||||
public string RemarkB
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._RemarkB;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._RemarkB != value))
|
|
||||||
{
|
|
||||||
this.OnRemarkBChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._RemarkB = value;
|
|
||||||
this.SendPropertyChanged("RemarkB");
|
|
||||||
this.OnRemarkBChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateTime", DbType="DateTime NOT NULL")]
|
|
||||||
public System.DateTime CreateTime
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._CreateTime;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._CreateTime != value))
|
|
||||||
{
|
|
||||||
this.OnCreateTimeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._CreateTime = value;
|
|
||||||
this.SendPropertyChanged("CreateTime");
|
|
||||||
this.OnCreateTimeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public event PropertyChangingEventHandler PropertyChanging;
|
|
||||||
|
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
|
||||||
|
|
||||||
protected virtual void SendPropertyChanging()
|
|
||||||
{
|
|
||||||
if ((this.PropertyChanging != null))
|
|
||||||
{
|
|
||||||
this.PropertyChanging(this, emptyChangingEventArgs);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected virtual void SendPropertyChanged(String propertyName)
|
|
||||||
{
|
|
||||||
if ((this.PropertyChanged != null))
|
|
||||||
{
|
|
||||||
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Meeting_AttendMeeting")]
|
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Meeting_AttendMeeting")]
|
||||||
public partial class Meeting_AttendMeeting : INotifyPropertyChanging, INotifyPropertyChanged
|
public partial class Meeting_AttendMeeting : INotifyPropertyChanging, INotifyPropertyChanged
|
||||||
{
|
{
|
||||||
|
@ -344187,8 +343514,6 @@ namespace Model
|
||||||
|
|
||||||
private System.Nullable<bool> _IsBlacklist;
|
private System.Nullable<bool> _IsBlacklist;
|
||||||
|
|
||||||
private string _Email;
|
|
||||||
|
|
||||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||||
|
|
||||||
private EntitySet<Accident_AccidentReportOtherItem> _Accident_AccidentReportOtherItem;
|
private EntitySet<Accident_AccidentReportOtherItem> _Accident_AccidentReportOtherItem;
|
||||||
|
@ -344375,8 +343700,6 @@ namespace Model
|
||||||
partial void OnIsSafetyMonitoringChanged();
|
partial void OnIsSafetyMonitoringChanged();
|
||||||
partial void OnIsBlacklistChanging(System.Nullable<bool> value);
|
partial void OnIsBlacklistChanging(System.Nullable<bool> value);
|
||||||
partial void OnIsBlacklistChanged();
|
partial void OnIsBlacklistChanged();
|
||||||
partial void OnEmailChanging(string value);
|
|
||||||
partial void OnEmailChanged();
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public SitePerson_Person()
|
public SitePerson_Person()
|
||||||
|
@ -345685,26 +345008,6 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Email", DbType="NVarChar(200)")]
|
|
||||||
public string Email
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._Email;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._Email != value))
|
|
||||||
{
|
|
||||||
this.OnEmailChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._Email = value;
|
|
||||||
this.SendPropertyChanged("Email");
|
|
||||||
this.OnEmailChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_SitePerson_Person", Storage="_Accident_AccidentPersonRecord", ThisKey="PersonId", OtherKey="PersonId", DeleteRule="NO ACTION")]
|
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_SitePerson_Person", Storage="_Accident_AccidentPersonRecord", ThisKey="PersonId", OtherKey="PersonId", DeleteRule="NO ACTION")]
|
||||||
public EntitySet<Accident_AccidentPersonRecord> Accident_AccidentPersonRecord
|
public EntitySet<Accident_AccidentPersonRecord> Accident_AccidentPersonRecord
|
||||||
{
|
{
|
||||||
|
|
|
@ -230,7 +230,6 @@
|
||||||
<Compile Include="JDGL\WBSDetailItem.cs" />
|
<Compile Include="JDGL\WBSDetailItem.cs" />
|
||||||
<Compile Include="JDGL\WBSSetInitItem.cs" />
|
<Compile Include="JDGL\WBSSetInitItem.cs" />
|
||||||
<Compile Include="JDGL\WBSSetItem.cs" />
|
<Compile Include="JDGL\WBSSetItem.cs" />
|
||||||
<Compile Include="MDM\MdmProject.cs" />
|
|
||||||
<Compile Include="Model.cs" />
|
<Compile Include="Model.cs" />
|
||||||
<Compile Include="ModelProc.cs" />
|
<Compile Include="ModelProc.cs" />
|
||||||
<Compile Include="Num.cs" />
|
<Compile Include="Num.cs" />
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Model
|
namespace Model
|
||||||
{
|
{
|
||||||
public class TokenItem
|
public class TokenItem
|
||||||
|
|
Loading…
Reference in New Issue