20250122
This commit is contained in:
+776
-3
@@ -870,6 +870,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<View_EMC_PunishmentNew> View_EMC_PunishmentNew
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<View_EMC_PunishmentNew>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<View_EMC_Que_Punishment> View_EMC_Que_Punishment
|
||||
{
|
||||
get
|
||||
@@ -20537,6 +20545,10 @@ namespace Model
|
||||
|
||||
private string _ShowViolationDegree;
|
||||
|
||||
private string _Deleted;
|
||||
|
||||
private string _Blocked;
|
||||
|
||||
public FC_SESReportView()
|
||||
{
|
||||
}
|
||||
@@ -20876,6 +20888,38 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Deleted", DbType="VarChar(10)")]
|
||||
public string Deleted
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Deleted;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Deleted != value))
|
||||
{
|
||||
this._Deleted = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Blocked", DbType="VarChar(10)")]
|
||||
public string Blocked
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Blocked;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Blocked != value))
|
||||
{
|
||||
this._Blocked = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.FC_SignedContracts")]
|
||||
@@ -27702,12 +27746,36 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsOthers;
|
||||
|
||||
private System.Nullable<int> _OthersNum;
|
||||
private int _OthersNum;
|
||||
|
||||
private string _OtherDef;
|
||||
|
||||
private string _Proposed;
|
||||
|
||||
private int _InterviewTimes;
|
||||
|
||||
private int _NCRTimes;
|
||||
|
||||
private int _RectificationTimes;
|
||||
|
||||
private int _GreenTimes;
|
||||
|
||||
private int _YellowGreenTimes;
|
||||
|
||||
private int _YellowTimes;
|
||||
|
||||
private int _RedYellowTimes;
|
||||
|
||||
private int _RedTimes;
|
||||
|
||||
private string _NotAudit;
|
||||
|
||||
private string _IfExtend;
|
||||
|
||||
private string _PreviousFO;
|
||||
|
||||
private string _TechnicalBonusMalus;
|
||||
|
||||
private System.Nullable<decimal> _Total;
|
||||
|
||||
private System.Nullable<decimal> _YearAvg;
|
||||
@@ -28212,8 +28280,8 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OthersNum", DbType="Int")]
|
||||
public System.Nullable<int> OthersNum
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OthersNum", DbType="Int NOT NULL")]
|
||||
public int OthersNum
|
||||
{
|
||||
get
|
||||
{
|
||||
@@ -28260,6 +28328,198 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterviewTimes", DbType="Int NOT NULL")]
|
||||
public int InterviewTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InterviewTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InterviewTimes != value))
|
||||
{
|
||||
this._InterviewTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NCRTimes", DbType="Int NOT NULL")]
|
||||
public int NCRTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._NCRTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._NCRTimes != value))
|
||||
{
|
||||
this._NCRTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RectificationTimes", DbType="Int NOT NULL")]
|
||||
public int RectificationTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RectificationTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RectificationTimes != value))
|
||||
{
|
||||
this._RectificationTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GreenTimes", DbType="Int NOT NULL")]
|
||||
public int GreenTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._GreenTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._GreenTimes != value))
|
||||
{
|
||||
this._GreenTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_YellowGreenTimes", DbType="Int NOT NULL")]
|
||||
public int YellowGreenTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._YellowGreenTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._YellowGreenTimes != value))
|
||||
{
|
||||
this._YellowGreenTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_YellowTimes", DbType="Int NOT NULL")]
|
||||
public int YellowTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._YellowTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._YellowTimes != value))
|
||||
{
|
||||
this._YellowTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RedYellowTimes", DbType="Int NOT NULL")]
|
||||
public int RedYellowTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RedYellowTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RedYellowTimes != value))
|
||||
{
|
||||
this._RedYellowTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RedTimes", DbType="Int NOT NULL")]
|
||||
public int RedTimes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RedTimes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RedTimes != value))
|
||||
{
|
||||
this._RedTimes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NotAudit", DbType="VarChar(2) NOT NULL", CanBeNull=false)]
|
||||
public string NotAudit
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._NotAudit;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._NotAudit != value))
|
||||
{
|
||||
this._NotAudit = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IfExtend", DbType="VarChar(1) NOT NULL", CanBeNull=false)]
|
||||
public string IfExtend
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IfExtend;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IfExtend != value))
|
||||
{
|
||||
this._IfExtend = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PreviousFO", DbType="NVarChar(50)")]
|
||||
public string PreviousFO
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PreviousFO;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PreviousFO != value))
|
||||
{
|
||||
this._PreviousFO = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TechnicalBonusMalus", DbType="VarChar(51)")]
|
||||
public string TechnicalBonusMalus
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TechnicalBonusMalus;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TechnicalBonusMalus != value))
|
||||
{
|
||||
this._TechnicalBonusMalus = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Total", DbType="Decimal(20,2)")]
|
||||
public System.Nullable<decimal> Total
|
||||
{
|
||||
@@ -30966,6 +31226,519 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_EMC_PunishmentNew")]
|
||||
public partial class View_EMC_PunishmentNew
|
||||
{
|
||||
|
||||
private string _PunishmentId;
|
||||
|
||||
private System.Nullable<System.DateTime> _PunishDate;
|
||||
|
||||
private string _Location;
|
||||
|
||||
private string _Description;
|
||||
|
||||
private string _Contractor;
|
||||
|
||||
private string _FO_NO;
|
||||
|
||||
private string _Main_Coordinator;
|
||||
|
||||
private string _MainCoordinatorName;
|
||||
|
||||
private string _MCDepName;
|
||||
|
||||
private string _ContractRequester;
|
||||
|
||||
private string _ContractRequesterName;
|
||||
|
||||
private string _ContractRequesterDep;
|
||||
|
||||
private string _UserRepresentativeName;
|
||||
|
||||
private string _ContractAdminName;
|
||||
|
||||
private string _ItemNo;
|
||||
|
||||
private string _ViolationClauseId;
|
||||
|
||||
private string _ClauseDef;
|
||||
|
||||
private string _ViolationDegree;
|
||||
|
||||
private System.Nullable<decimal> _Company;
|
||||
|
||||
private string _IndividualPerson;
|
||||
|
||||
private System.Nullable<decimal> _Individual;
|
||||
|
||||
private string _UserDepName;
|
||||
|
||||
private string _ViolationRelatedSes;
|
||||
|
||||
private string _SES_No;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompletionDate;
|
||||
|
||||
private System.Nullable<bool> _IsFrame;
|
||||
|
||||
private string _IsFrameName;
|
||||
|
||||
private string _Flag;
|
||||
|
||||
public View_EMC_PunishmentNew()
|
||||
{
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PunishmentId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string PunishmentId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PunishmentId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PunishmentId != value))
|
||||
{
|
||||
this._PunishmentId = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PunishDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> PunishDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PunishDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PunishDate != value))
|
||||
{
|
||||
this._PunishDate = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Location", DbType="NVarChar(100)")]
|
||||
public string Location
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Location;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Location != value))
|
||||
{
|
||||
this._Location = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Description", DbType="NVarChar(500)")]
|
||||
public string Description
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Description;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Description != value))
|
||||
{
|
||||
this._Description = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Contractor", DbType="NVarChar(150)")]
|
||||
public string Contractor
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Contractor;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Contractor != value))
|
||||
{
|
||||
this._Contractor = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FO_NO", DbType="NVarChar(50)")]
|
||||
public string FO_NO
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._FO_NO;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._FO_NO != value))
|
||||
{
|
||||
this._FO_NO = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Main_Coordinator", DbType="NVarChar(50)")]
|
||||
public string Main_Coordinator
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Main_Coordinator;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Main_Coordinator != value))
|
||||
{
|
||||
this._Main_Coordinator = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainCoordinatorName", DbType="NVarChar(50)")]
|
||||
public string MainCoordinatorName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainCoordinatorName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainCoordinatorName != value))
|
||||
{
|
||||
this._MainCoordinatorName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MCDepName", DbType="NVarChar(50)")]
|
||||
public string MCDepName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MCDepName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MCDepName != value))
|
||||
{
|
||||
this._MCDepName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractRequester", DbType="NVarChar(50)")]
|
||||
public string ContractRequester
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ContractRequester;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ContractRequester != value))
|
||||
{
|
||||
this._ContractRequester = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractRequesterName", DbType="NVarChar(50)")]
|
||||
public string ContractRequesterName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ContractRequesterName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ContractRequesterName != value))
|
||||
{
|
||||
this._ContractRequesterName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractRequesterDep", DbType="NVarChar(50)")]
|
||||
public string ContractRequesterDep
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ContractRequesterDep;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ContractRequesterDep != value))
|
||||
{
|
||||
this._ContractRequesterDep = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserRepresentativeName", DbType="NVarChar(50)")]
|
||||
public string UserRepresentativeName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UserRepresentativeName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UserRepresentativeName != value))
|
||||
{
|
||||
this._UserRepresentativeName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractAdminName", DbType="NVarChar(50)")]
|
||||
public string ContractAdminName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ContractAdminName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ContractAdminName != value))
|
||||
{
|
||||
this._ContractAdminName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ItemNo", DbType="NVarChar(10)")]
|
||||
public string ItemNo
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ItemNo;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ItemNo != value))
|
||||
{
|
||||
this._ItemNo = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ViolationClauseId", DbType="NVarChar(50)")]
|
||||
public string ViolationClauseId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ViolationClauseId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ViolationClauseId != value))
|
||||
{
|
||||
this._ViolationClauseId = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ClauseDef", DbType="NVarChar(500)")]
|
||||
public string ClauseDef
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ClauseDef;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ClauseDef != value))
|
||||
{
|
||||
this._ClauseDef = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ViolationDegree", DbType="VarChar(10)")]
|
||||
public string ViolationDegree
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ViolationDegree;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ViolationDegree != value))
|
||||
{
|
||||
this._ViolationDegree = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Company", DbType="Money")]
|
||||
public System.Nullable<decimal> Company
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Company;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Company != value))
|
||||
{
|
||||
this._Company = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IndividualPerson", DbType="NVarChar(50)")]
|
||||
public string IndividualPerson
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IndividualPerson;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IndividualPerson != value))
|
||||
{
|
||||
this._IndividualPerson = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Individual", DbType="Money")]
|
||||
public System.Nullable<decimal> Individual
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Individual;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Individual != value))
|
||||
{
|
||||
this._Individual = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserDepName", DbType="NVarChar(50)")]
|
||||
public string UserDepName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UserDepName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UserDepName != value))
|
||||
{
|
||||
this._UserDepName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ViolationRelatedSes", DbType="NVarChar(50)")]
|
||||
public string ViolationRelatedSes
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ViolationRelatedSes;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ViolationRelatedSes != value))
|
||||
{
|
||||
this._ViolationRelatedSes = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SES_No", DbType="NVarChar(20)")]
|
||||
public string SES_No
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SES_No;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SES_No != value))
|
||||
{
|
||||
this._SES_No = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompletionDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CompletionDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompletionDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompletionDate != value))
|
||||
{
|
||||
this._CompletionDate = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsFrame", DbType="Bit")]
|
||||
public System.Nullable<bool> IsFrame
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsFrame;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsFrame != value))
|
||||
{
|
||||
this._IsFrame = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsFrameName", DbType="VarChar(2) NOT NULL", CanBeNull=false)]
|
||||
public string IsFrameName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsFrameName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsFrameName != value))
|
||||
{
|
||||
this._IsFrameName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Flag", DbType="NChar(1)")]
|
||||
public string Flag
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Flag;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Flag != value))
|
||||
{
|
||||
this._Flag = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_EMC_Que_Punishment")]
|
||||
public partial class View_EMC_Que_Punishment
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user