IDP质量设计图纸管理

This commit is contained in:
2025-07-17 14:22:38 +08:00
parent c763312888
commit 9fd7ab5407
21 changed files with 2457 additions and 51 deletions
@@ -0,0 +1,247 @@
// <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 Newtonsoft.Json;
/// <summary>
/// IDP设计图纸接口返回参数
/// </summary>
public partial class IDPDesignDrawingResponseData
{
///// <summary>
///// 返回状态
///// </summary>
//[JsonProperty("code")]
//public int code { get; set; }
///// <summary>
///// 返回消息
///// </summary>
//[JsonProperty("msg")]
//public string msg { get; set; }
/// <summary>
/// 返回数据结果对象
/// </summary>
[JsonProperty("page")]
public IDPDesignDrawingPageData page { get; set; }
}
/// <summary>
/// 数据结果对象
/// </summary>
public partial class IDPDesignDrawingPageData
{
/// <summary>
/// 当前查询页码
/// </summary>
[JsonProperty("pageNum")]
public int pageNum { get; set; }
/// <summary>
/// 当前查询每页条数
/// </summary>
[JsonProperty("pageSize")]
public int pageSize { get; set; }
/// <summary>
/// 本页查询获取数量
/// </summary>
[JsonProperty("size")]
public int size { get; set; }
/// <summary>
/// 总数
/// </summary>
[JsonProperty("total")]
public int total { get; set; }
/// <summary>
/// 总页码
/// </summary>
[JsonProperty("pages")]
public int pages { get; set; }
/// <summary>
/// 返回设计图纸数据结果对象
/// </summary>
[JsonProperty("results")]
public System.Collections.Generic.List<IDPDesignDrawing> results { get; set; }
}
/// <summary>
/// IDP设计图纸
/// </summary>
public partial class IDPDesignDrawing
{
/// <summary>
/// IDP文件ID
/// </summary>
[JsonProperty("fileId")]
public string fileId { get; set; }
/// <summary>
/// IDP主键推送批次idstockId
/// </summary>
[JsonProperty("stockId")]
public string stockId { get; set; }
/// <summary>
/// 文件网盘id
/// </summary>
[JsonProperty("thirdId")]
public string thirdId { get; set; }
/// <summary>
/// 主项目编号
/// </summary>
[JsonProperty("projectCode")]
public string projectCode { get; set; }
/// <summary>
/// 项目信息
/// </summary>
[JsonProperty("displayProjectName")]
public string displayProjectName { get; set; }
/// <summary>
/// 装工主编码
/// </summary>
[JsonProperty("projectDeviceProcedureSubjectCode")]
public string projectDeviceProcedureSubjectCode { get; set; }
/// <summary>
/// 装工主名称
/// </summary>
[JsonProperty("wbsFullPath")]
public string wbsFullPath { get; set; }
/// <summary>
/// 文件编码
/// </summary>
[JsonProperty("formatFileCode")]
public string formatFileCode { get; set; }
/// <summary>
/// 文件名称
/// </summary>
[JsonProperty("formatFileName")]
public string formatFileName { get; set; }
/// <summary>
/// 版次
/// </summary>
[JsonProperty("fileVersion")]
public string fileVersion { get; set; }
/// <summary>
/// 专业
/// </summary>
[JsonProperty("majorNo")]
public string majorNo { get; set; }
/// <summary>
/// 发布状态
/// </summary>
[JsonProperty("status")]
public string status { get; set; }
/// <summary>
/// 设计人
/// </summary>
[JsonProperty("designUserName")]
public string designUserName { get; set; }
/// <summary>
/// 校核人
/// </summary>
[JsonProperty("jiaoheUserName")]
public string jiaoheUserName { get; set; }
/// <summary>
/// 审核人
/// </summary>
[JsonProperty("shenheUserName")]
public string shenheUserName { get; set; }
/// <summary>
/// 审定人
/// </summary>
[JsonProperty("shendingUserName")]
public string shendingUserName { get; set; }
/// <summary>
/// 专业负责人
/// </summary>
[JsonProperty("majorResponsibleUserName")]
public string majorResponsibleUserName { get; set; }
/// <summary>
/// 保密等级
/// </summary>
[JsonProperty("classificationLevelInProject")]
public string classificationLevelInProject { get; set; }
/// <summary>
/// 入库日期
/// </summary>
[JsonProperty("updateTime")]
public DateTime? updateTime { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty("remark")]
public string remark { get; set; }
///// <summary>
///// 数字档案馆RdpId
///// </summary>
//[JsonProperty("RdpId")]
//public string RdpId { get; set; }
///// <summary>
///// 盖章前文件id
///// </summary>
//[JsonProperty("fileid")]
//public string fileid { get; set; }
///// <summary>
///// 盖章后文件id
///// </summary>
//[JsonProperty("upfileid")]
//public string upfileid { get; set; }
///// <summary>
///// 文件名称
///// </summary>
//[JsonProperty("maintitle")]
//public string maintitle { get; set; }
///// <summary>
///// 文件编号
///// </summary>
//[JsonProperty("doc_no")]
//public string doc_no { get; set; }
///// <summary>
///// 版次
///// </summary>
//[JsonProperty("bc")]
//public string bc { get; set; }
///// <summary>
///// 入库档案号
///// </summary>
//[JsonProperty("archnumber")]
//public string archnumber { get; set; }
///// <summary>
///// 档案室验收日期
///// </summary>
//[JsonProperty("sendtime")]
//public DateTime? sendtime { get; set; }
///// <summary>
///// 蓝图打印日期
///// </summary>
//[JsonProperty("printtime")]
//public DateTime? printtime { get; set; }
///// <summary>
///// 蓝图是否寄出(是、否)
///// </summary>
//[JsonProperty("ifmail")]
//public string ifmail { get; set; }
}
public partial class IDPDesignDrawingResponseData
{
public static IDPDesignDrawingResponseData FromJson(string json)
{
return JsonConvert.DeserializeObject<IDPDesignDrawingResponseData>(json, Model.Converter.Settings);
}
}
}
+88
View File
@@ -0,0 +1,88 @@
// <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 Newtonsoft.Json;
/// <summary>
/// OA设计图纸接收参数
/// </summary>
public partial class OADesignDrawingData
{
/// <summary>
/// OA设计图纸数据项集合
/// </summary>
public List<OADesignDrawingDataItem> DataItems
{
get;
set;
}
}
/// <summary>
/// 数据结果对象
/// </summary>
public partial class OADesignDrawingDataItem
{
/// <summary>
/// 数字档案馆RdpId
/// </summary>
[JsonProperty("RdpId")]
public string RdpId { get; set; }
/// <summary>
/// 盖章前文件id
/// </summary>
[JsonProperty("fileid")]
public string fileid { get; set; }
/// <summary>
/// 盖章后文件id
/// </summary>
[JsonProperty("upfileid")]
public string upfileid { get; set; }
/// <summary>
/// 文件名称
/// </summary>
[JsonProperty("maintitle")]
public string maintitle { get; set; }
/// <summary>
/// 文件编号
/// </summary>
[JsonProperty("doc_no")]
public string doc_no { get; set; }
/// <summary>
/// 版次
/// </summary>
[JsonProperty("bc")]
public string bc { get; set; }
/// <summary>
/// 入库档案号
/// </summary>
[JsonProperty("archnumber")]
public string archnumber { get; set; }
/// <summary>
/// 档案室验收日期
/// </summary>
[JsonProperty("sendtime")]
public DateTime? sendtime { get; set; }
/// <summary>
/// 蓝图打印日期
/// </summary>
[JsonProperty("printtime")]
public DateTime? printtime { get; set; }
/// <summary>
/// 蓝图是否寄出(是、否)
/// </summary>
[JsonProperty("ifmail")]
public string ifmail { get; set; }
}
}
+819 -2
View File
@@ -1184,6 +1184,9 @@ namespace Model
partial void InsertHSSESystem_SafetyInstitution(HSSESystem_SafetyInstitution instance);
partial void UpdateHSSESystem_SafetyInstitution(HSSESystem_SafetyInstitution instance);
partial void DeleteHSSESystem_SafetyInstitution(HSSESystem_SafetyInstitution instance);
partial void InsertIDP_DesignDrawing(IDP_DesignDrawing instance);
partial void UpdateIDP_DesignDrawing(IDP_DesignDrawing instance);
partial void DeleteIDP_DesignDrawing(IDP_DesignDrawing instance);
partial void InsertInApproveManager_EquipmentIn(InApproveManager_EquipmentIn instance);
partial void UpdateInApproveManager_EquipmentIn(InApproveManager_EquipmentIn instance);
partial void DeleteInApproveManager_EquipmentIn(InApproveManager_EquipmentIn instance);
@@ -5921,6 +5924,14 @@ namespace Model
}
}
public System.Data.Linq.Table<IDP_DesignDrawing> IDP_DesignDrawing
{
get
{
return this.GetTable<IDP_DesignDrawing>();
}
}
public System.Data.Linq.Table<InApproveManager_EquipmentIn> InApproveManager_EquipmentIn
{
get
@@ -52273,7 +52284,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartName", DbType="NVarChar(50)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartName", DbType="NVarChar(200)")]
public string DepartName
{
get
@@ -52453,7 +52464,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(50)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(1000)")]
public string Remark
{
get
@@ -188144,6 +188155,812 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.IDP_DesignDrawing")]
public partial class IDP_DesignDrawing : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _IdpfileId;
private string _StockId;
private string _ThirdId;
private string _ProjectId;
private string _ProjectCode;
private string _DisplayProjectName;
private string _ProjectDeviceProcedureSubjectCode;
private string _WbsFullPath;
private string _FormatFileCode;
private string _FormatFileName;
private string _FileVersion;
private string _MajorNo;
private string _Status;
private string _DesignUserName;
private string _JiaoheUserName;
private string _ShenheUserName;
private string _ShendingUserName;
private string _MajorResponsibleUserName;
private string _ClassificationLevelInProject;
private System.Nullable<System.DateTime> _UpdateTime;
private string _Remark;
private string _RdpId;
private string _Fileid;
private string _Upfileid;
private string _Maintitle;
private string _Doc_no;
private string _Bc;
private string _Archnumber;
private System.Nullable<System.DateTime> _Sendtime;
private System.Nullable<System.DateTime> _Printtime;
private string _Ifmail;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnIdChanging(string value);
partial void OnIdChanged();
partial void OnIdpfileIdChanging(string value);
partial void OnIdpfileIdChanged();
partial void OnStockIdChanging(string value);
partial void OnStockIdChanged();
partial void OnThirdIdChanging(string value);
partial void OnThirdIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnProjectCodeChanging(string value);
partial void OnProjectCodeChanged();
partial void OnDisplayProjectNameChanging(string value);
partial void OnDisplayProjectNameChanged();
partial void OnProjectDeviceProcedureSubjectCodeChanging(string value);
partial void OnProjectDeviceProcedureSubjectCodeChanged();
partial void OnWbsFullPathChanging(string value);
partial void OnWbsFullPathChanged();
partial void OnFormatFileCodeChanging(string value);
partial void OnFormatFileCodeChanged();
partial void OnFormatFileNameChanging(string value);
partial void OnFormatFileNameChanged();
partial void OnFileVersionChanging(string value);
partial void OnFileVersionChanged();
partial void OnMajorNoChanging(string value);
partial void OnMajorNoChanged();
partial void OnStatusChanging(string value);
partial void OnStatusChanged();
partial void OnDesignUserNameChanging(string value);
partial void OnDesignUserNameChanged();
partial void OnJiaoheUserNameChanging(string value);
partial void OnJiaoheUserNameChanged();
partial void OnShenheUserNameChanging(string value);
partial void OnShenheUserNameChanged();
partial void OnShendingUserNameChanging(string value);
partial void OnShendingUserNameChanged();
partial void OnMajorResponsibleUserNameChanging(string value);
partial void OnMajorResponsibleUserNameChanged();
partial void OnClassificationLevelInProjectChanging(string value);
partial void OnClassificationLevelInProjectChanged();
partial void OnUpdateTimeChanging(System.Nullable<System.DateTime> value);
partial void OnUpdateTimeChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnRdpIdChanging(string value);
partial void OnRdpIdChanged();
partial void OnFileidChanging(string value);
partial void OnFileidChanged();
partial void OnUpfileidChanging(string value);
partial void OnUpfileidChanged();
partial void OnMaintitleChanging(string value);
partial void OnMaintitleChanged();
partial void OnDoc_noChanging(string value);
partial void OnDoc_noChanged();
partial void OnBcChanging(string value);
partial void OnBcChanged();
partial void OnArchnumberChanging(string value);
partial void OnArchnumberChanged();
partial void OnSendtimeChanging(System.Nullable<System.DateTime> value);
partial void OnSendtimeChanged();
partial void OnPrinttimeChanging(System.Nullable<System.DateTime> value);
partial void OnPrinttimeChanged();
partial void OnIfmailChanging(string value);
partial void OnIfmailChanged();
#endregion
public IDP_DesignDrawing()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="id", Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string 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="idpfileId", Storage="_IdpfileId", DbType="NVarChar(50)")]
public string IdpfileId
{
get
{
return this._IdpfileId;
}
set
{
if ((this._IdpfileId != value))
{
this.OnIdpfileIdChanging(value);
this.SendPropertyChanging();
this._IdpfileId = value;
this.SendPropertyChanged("IdpfileId");
this.OnIdpfileIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stockId", Storage="_StockId", DbType="NVarChar(50)")]
public string StockId
{
get
{
return this._StockId;
}
set
{
if ((this._StockId != value))
{
this.OnStockIdChanging(value);
this.SendPropertyChanging();
this._StockId = value;
this.SendPropertyChanged("StockId");
this.OnStockIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="thirdId", Storage="_ThirdId", DbType="NVarChar(50)")]
public string ThirdId
{
get
{
return this._ThirdId;
}
set
{
if ((this._ThirdId != value))
{
this.OnThirdIdChanging(value);
this.SendPropertyChanging();
this._ThirdId = value;
this.SendPropertyChanged("ThirdId");
this.OnThirdIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projectId", Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this.OnProjectIdChanging(value);
this.SendPropertyChanging();
this._ProjectId = value;
this.SendPropertyChanged("ProjectId");
this.OnProjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projectCode", Storage="_ProjectCode", DbType="NVarChar(50)")]
public string ProjectCode
{
get
{
return this._ProjectCode;
}
set
{
if ((this._ProjectCode != value))
{
this.OnProjectCodeChanging(value);
this.SendPropertyChanging();
this._ProjectCode = value;
this.SendPropertyChanged("ProjectCode");
this.OnProjectCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="displayProjectName", Storage="_DisplayProjectName", DbType="NVarChar(500)")]
public string DisplayProjectName
{
get
{
return this._DisplayProjectName;
}
set
{
if ((this._DisplayProjectName != value))
{
this.OnDisplayProjectNameChanging(value);
this.SendPropertyChanging();
this._DisplayProjectName = value;
this.SendPropertyChanged("DisplayProjectName");
this.OnDisplayProjectNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="projectDeviceProcedureSubjectCode", Storage="_ProjectDeviceProcedureSubjectCode", DbType="NVarChar(50)")]
public string ProjectDeviceProcedureSubjectCode
{
get
{
return this._ProjectDeviceProcedureSubjectCode;
}
set
{
if ((this._ProjectDeviceProcedureSubjectCode != value))
{
this.OnProjectDeviceProcedureSubjectCodeChanging(value);
this.SendPropertyChanging();
this._ProjectDeviceProcedureSubjectCode = value;
this.SendPropertyChanged("ProjectDeviceProcedureSubjectCode");
this.OnProjectDeviceProcedureSubjectCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="wbsFullPath", Storage="_WbsFullPath", DbType="NVarChar(200)")]
public string WbsFullPath
{
get
{
return this._WbsFullPath;
}
set
{
if ((this._WbsFullPath != value))
{
this.OnWbsFullPathChanging(value);
this.SendPropertyChanging();
this._WbsFullPath = value;
this.SendPropertyChanged("WbsFullPath");
this.OnWbsFullPathChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="formatFileCode", Storage="_FormatFileCode", DbType="NVarChar(50)")]
public string FormatFileCode
{
get
{
return this._FormatFileCode;
}
set
{
if ((this._FormatFileCode != value))
{
this.OnFormatFileCodeChanging(value);
this.SendPropertyChanging();
this._FormatFileCode = value;
this.SendPropertyChanged("FormatFileCode");
this.OnFormatFileCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="formatFileName", Storage="_FormatFileName", DbType="NVarChar(200)")]
public string FormatFileName
{
get
{
return this._FormatFileName;
}
set
{
if ((this._FormatFileName != value))
{
this.OnFormatFileNameChanging(value);
this.SendPropertyChanging();
this._FormatFileName = value;
this.SendPropertyChanged("FormatFileName");
this.OnFormatFileNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="fileVersion", Storage="_FileVersion", DbType="NVarChar(50)")]
public string FileVersion
{
get
{
return this._FileVersion;
}
set
{
if ((this._FileVersion != value))
{
this.OnFileVersionChanging(value);
this.SendPropertyChanging();
this._FileVersion = value;
this.SendPropertyChanged("FileVersion");
this.OnFileVersionChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="majorNo", Storage="_MajorNo", DbType="NVarChar(50)")]
public string MajorNo
{
get
{
return this._MajorNo;
}
set
{
if ((this._MajorNo != value))
{
this.OnMajorNoChanging(value);
this.SendPropertyChanging();
this._MajorNo = value;
this.SendPropertyChanged("MajorNo");
this.OnMajorNoChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="status", Storage="_Status", DbType="NVarChar(50)")]
public string Status
{
get
{
return this._Status;
}
set
{
if ((this._Status != value))
{
this.OnStatusChanging(value);
this.SendPropertyChanging();
this._Status = value;
this.SendPropertyChanged("Status");
this.OnStatusChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="designUserName", Storage="_DesignUserName", DbType="NVarChar(50)")]
public string DesignUserName
{
get
{
return this._DesignUserName;
}
set
{
if ((this._DesignUserName != value))
{
this.OnDesignUserNameChanging(value);
this.SendPropertyChanging();
this._DesignUserName = value;
this.SendPropertyChanged("DesignUserName");
this.OnDesignUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="jiaoheUserName", Storage="_JiaoheUserName", DbType="NVarChar(50)")]
public string JiaoheUserName
{
get
{
return this._JiaoheUserName;
}
set
{
if ((this._JiaoheUserName != value))
{
this.OnJiaoheUserNameChanging(value);
this.SendPropertyChanging();
this._JiaoheUserName = value;
this.SendPropertyChanged("JiaoheUserName");
this.OnJiaoheUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="shenheUserName", Storage="_ShenheUserName", DbType="NVarChar(50)")]
public string ShenheUserName
{
get
{
return this._ShenheUserName;
}
set
{
if ((this._ShenheUserName != value))
{
this.OnShenheUserNameChanging(value);
this.SendPropertyChanging();
this._ShenheUserName = value;
this.SendPropertyChanged("ShenheUserName");
this.OnShenheUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="shendingUserName", Storage="_ShendingUserName", DbType="NVarChar(50)")]
public string ShendingUserName
{
get
{
return this._ShendingUserName;
}
set
{
if ((this._ShendingUserName != value))
{
this.OnShendingUserNameChanging(value);
this.SendPropertyChanging();
this._ShendingUserName = value;
this.SendPropertyChanged("ShendingUserName");
this.OnShendingUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="majorResponsibleUserName", Storage="_MajorResponsibleUserName", DbType="NVarChar(50)")]
public string MajorResponsibleUserName
{
get
{
return this._MajorResponsibleUserName;
}
set
{
if ((this._MajorResponsibleUserName != value))
{
this.OnMajorResponsibleUserNameChanging(value);
this.SendPropertyChanging();
this._MajorResponsibleUserName = value;
this.SendPropertyChanged("MajorResponsibleUserName");
this.OnMajorResponsibleUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="classificationLevelInProject", Storage="_ClassificationLevelInProject", DbType="NVarChar(50)")]
public string ClassificationLevelInProject
{
get
{
return this._ClassificationLevelInProject;
}
set
{
if ((this._ClassificationLevelInProject != value))
{
this.OnClassificationLevelInProjectChanging(value);
this.SendPropertyChanging();
this._ClassificationLevelInProject = value;
this.SendPropertyChanged("ClassificationLevelInProject");
this.OnClassificationLevelInProjectChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="updateTime", Storage="_UpdateTime", DbType="DateTime")]
public System.Nullable<System.DateTime> UpdateTime
{
get
{
return this._UpdateTime;
}
set
{
if ((this._UpdateTime != value))
{
this.OnUpdateTimeChanging(value);
this.SendPropertyChanging();
this._UpdateTime = value;
this.SendPropertyChanged("UpdateTime");
this.OnUpdateTimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="remark", Storage="_Remark", DbType="NVarChar(500)")]
public string Remark
{
get
{
return this._Remark;
}
set
{
if ((this._Remark != value))
{
this.OnRemarkChanging(value);
this.SendPropertyChanging();
this._Remark = value;
this.SendPropertyChanged("Remark");
this.OnRemarkChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RdpId", DbType="NVarChar(50)")]
public string RdpId
{
get
{
return this._RdpId;
}
set
{
if ((this._RdpId != value))
{
this.OnRdpIdChanging(value);
this.SendPropertyChanging();
this._RdpId = value;
this.SendPropertyChanged("RdpId");
this.OnRdpIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="fileid", Storage="_Fileid", DbType="NVarChar(50)")]
public string Fileid
{
get
{
return this._Fileid;
}
set
{
if ((this._Fileid != value))
{
this.OnFileidChanging(value);
this.SendPropertyChanging();
this._Fileid = value;
this.SendPropertyChanged("Fileid");
this.OnFileidChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="upfileid", Storage="_Upfileid", DbType="NVarChar(50)")]
public string Upfileid
{
get
{
return this._Upfileid;
}
set
{
if ((this._Upfileid != value))
{
this.OnUpfileidChanging(value);
this.SendPropertyChanging();
this._Upfileid = value;
this.SendPropertyChanged("Upfileid");
this.OnUpfileidChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="maintitle", Storage="_Maintitle", DbType="NVarChar(200)")]
public string Maintitle
{
get
{
return this._Maintitle;
}
set
{
if ((this._Maintitle != value))
{
this.OnMaintitleChanging(value);
this.SendPropertyChanging();
this._Maintitle = value;
this.SendPropertyChanged("Maintitle");
this.OnMaintitleChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="doc_no", Storage="_Doc_no", DbType="NVarChar(50)")]
public string Doc_no
{
get
{
return this._Doc_no;
}
set
{
if ((this._Doc_no != value))
{
this.OnDoc_noChanging(value);
this.SendPropertyChanging();
this._Doc_no = value;
this.SendPropertyChanged("Doc_no");
this.OnDoc_noChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="bc", Storage="_Bc", DbType="NVarChar(50)")]
public string Bc
{
get
{
return this._Bc;
}
set
{
if ((this._Bc != value))
{
this.OnBcChanging(value);
this.SendPropertyChanging();
this._Bc = value;
this.SendPropertyChanged("Bc");
this.OnBcChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="archnumber", Storage="_Archnumber", DbType="NVarChar(50)")]
public string Archnumber
{
get
{
return this._Archnumber;
}
set
{
if ((this._Archnumber != value))
{
this.OnArchnumberChanging(value);
this.SendPropertyChanging();
this._Archnumber = value;
this.SendPropertyChanged("Archnumber");
this.OnArchnumberChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="sendtime", Storage="_Sendtime", DbType="DateTime")]
public System.Nullable<System.DateTime> Sendtime
{
get
{
return this._Sendtime;
}
set
{
if ((this._Sendtime != value))
{
this.OnSendtimeChanging(value);
this.SendPropertyChanging();
this._Sendtime = value;
this.SendPropertyChanged("Sendtime");
this.OnSendtimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="printtime", Storage="_Printtime", DbType="DateTime")]
public System.Nullable<System.DateTime> Printtime
{
get
{
return this._Printtime;
}
set
{
if ((this._Printtime != value))
{
this.OnPrinttimeChanging(value);
this.SendPropertyChanging();
this._Printtime = value;
this.SendPropertyChanged("Printtime");
this.OnPrinttimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="ifmail", Storage="_Ifmail", DbType="NVarChar(50)")]
public string Ifmail
{
get
{
return this._Ifmail;
}
set
{
if ((this._Ifmail != value))
{
this.OnIfmailChanging(value);
this.SendPropertyChanging();
this._Ifmail = value;
this.SendPropertyChanged("Ifmail");
this.OnIfmailChanged();
}
}
}
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.InApproveManager_EquipmentIn")]
public partial class InApproveManager_EquipmentIn : INotifyPropertyChanging, INotifyPropertyChanged
{
+2
View File
@@ -236,6 +236,8 @@
<Compile Include="HSSE\SpResourceCollection.cs" />
<Compile Include="HSSE\WorkPostStatisticItem.cs" />
<Compile Include="HSSE\HSSE_HazardTemplate.cs" />
<Compile Include="IDP\OADesignDrawingData.cs" />
<Compile Include="IDP\IDPDesignDrawingResponseData.cs" />
<Compile Include="JDGL\WBSDetailItem.cs" />
<Compile Include="JDGL\WBSSetInitItem.cs" />
<Compile Include="JDGL\WBSSetItem.cs" />