特种设备修改,车辆管理人员管理合并,考试接口创建试卷和答题使用redis

This commit is contained in:
2024-04-02 14:28:52 +08:00
parent 1b96387adc
commit d87b2d5be9
49 changed files with 4175 additions and 179 deletions
+240
View File
@@ -15979,6 +15979,12 @@ namespace Model
private System.Nullable<System.DateTime> _InsuranceDate;
private string _DriverName;
private string _DriverCode;
private System.Nullable<System.DateTime> _DrivingDate;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Sys_User> _Sys_User;
@@ -16011,6 +16017,12 @@ namespace Model
partial void OnStatesChanged();
partial void OnInsuranceDateChanging(System.Nullable<System.DateTime> value);
partial void OnInsuranceDateChanged();
partial void OnDriverNameChanging(string value);
partial void OnDriverNameChanged();
partial void OnDriverCodeChanging(string value);
partial void OnDriverCodeChanged();
partial void OnDrivingDateChanging(System.Nullable<System.DateTime> value);
partial void OnDrivingDateChanged();
#endregion
public Administrative_CarManager()
@@ -16268,6 +16280,66 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DriverName", DbType="NVarChar(50)")]
public string DriverName
{
get
{
return this._DriverName;
}
set
{
if ((this._DriverName != value))
{
this.OnDriverNameChanging(value);
this.SendPropertyChanging();
this._DriverName = value;
this.SendPropertyChanged("DriverName");
this.OnDriverNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DriverCode", DbType="NVarChar(50)")]
public string DriverCode
{
get
{
return this._DriverCode;
}
set
{
if ((this._DriverCode != value))
{
this.OnDriverCodeChanging(value);
this.SendPropertyChanging();
this._DriverCode = value;
this.SendPropertyChanged("DriverCode");
this.OnDriverCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrivingDate", DbType="DateTime")]
public System.Nullable<System.DateTime> DrivingDate
{
get
{
return this._DrivingDate;
}
set
{
if ((this._DrivingDate != value))
{
this.OnDrivingDateChanging(value);
this.SendPropertyChanging();
this._DrivingDate = value;
this.SendPropertyChanged("DrivingDate");
this.OnDrivingDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Administrative_CarManager_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -180683,6 +180755,20 @@ namespace Model
private System.Nullable<bool> _IsIn;
private System.Nullable<System.DateTime> _InDate;
private System.Nullable<System.DateTime> _EququalityExpireDate;
private System.Nullable<decimal> _InsuredAmount;
private string _OperatorName;
private string _OperatorIdentityCard;
private System.Nullable<System.DateTime> _OperatorQualityExpireDate;
private string _CertificationDepartment;
private EntityRef<Base_SpecialEquipment> _Base_SpecialEquipment;
private EntityRef<InApproveManager_EquipmentIn> _InApproveManager_EquipmentIn;
@@ -180719,6 +180805,20 @@ namespace Model
partial void OnIsUsedChanged();
partial void OnIsInChanging(System.Nullable<bool> value);
partial void OnIsInChanged();
partial void OnInDateChanging(System.Nullable<System.DateTime> value);
partial void OnInDateChanged();
partial void OnEququalityExpireDateChanging(System.Nullable<System.DateTime> value);
partial void OnEququalityExpireDateChanged();
partial void OnInsuredAmountChanging(System.Nullable<decimal> value);
partial void OnInsuredAmountChanged();
partial void OnOperatorNameChanging(string value);
partial void OnOperatorNameChanged();
partial void OnOperatorIdentityCardChanging(string value);
partial void OnOperatorIdentityCardChanged();
partial void OnOperatorQualityExpireDateChanging(System.Nullable<System.DateTime> value);
partial void OnOperatorQualityExpireDateChanged();
partial void OnCertificationDepartmentChanging(string value);
partial void OnCertificationDepartmentChanged();
#endregion
public InApproveManager_EquipmentInItem()
@@ -181016,6 +181116,146 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InDate", DbType="DateTime")]
public System.Nullable<System.DateTime> InDate
{
get
{
return this._InDate;
}
set
{
if ((this._InDate != value))
{
this.OnInDateChanging(value);
this.SendPropertyChanging();
this._InDate = value;
this.SendPropertyChanged("InDate");
this.OnInDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EququalityExpireDate", DbType="DateTime")]
public System.Nullable<System.DateTime> EququalityExpireDate
{
get
{
return this._EququalityExpireDate;
}
set
{
if ((this._EququalityExpireDate != value))
{
this.OnEququalityExpireDateChanging(value);
this.SendPropertyChanging();
this._EququalityExpireDate = value;
this.SendPropertyChanged("EququalityExpireDate");
this.OnEququalityExpireDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InsuredAmount", DbType="Decimal(18,0)")]
public System.Nullable<decimal> InsuredAmount
{
get
{
return this._InsuredAmount;
}
set
{
if ((this._InsuredAmount != value))
{
this.OnInsuredAmountChanging(value);
this.SendPropertyChanging();
this._InsuredAmount = value;
this.SendPropertyChanged("InsuredAmount");
this.OnInsuredAmountChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OperatorName", DbType="NVarChar(50)")]
public string OperatorName
{
get
{
return this._OperatorName;
}
set
{
if ((this._OperatorName != value))
{
this.OnOperatorNameChanging(value);
this.SendPropertyChanging();
this._OperatorName = value;
this.SendPropertyChanged("OperatorName");
this.OnOperatorNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OperatorIdentityCard", DbType="NVarChar(50)")]
public string OperatorIdentityCard
{
get
{
return this._OperatorIdentityCard;
}
set
{
if ((this._OperatorIdentityCard != value))
{
this.OnOperatorIdentityCardChanging(value);
this.SendPropertyChanging();
this._OperatorIdentityCard = value;
this.SendPropertyChanged("OperatorIdentityCard");
this.OnOperatorIdentityCardChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OperatorQualityExpireDate", DbType="DateTime")]
public System.Nullable<System.DateTime> OperatorQualityExpireDate
{
get
{
return this._OperatorQualityExpireDate;
}
set
{
if ((this._OperatorQualityExpireDate != value))
{
this.OnOperatorQualityExpireDateChanging(value);
this.SendPropertyChanging();
this._OperatorQualityExpireDate = value;
this.SendPropertyChanged("OperatorQualityExpireDate");
this.OnOperatorQualityExpireDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CertificationDepartment", DbType="NVarChar(50)")]
public string CertificationDepartment
{
get
{
return this._CertificationDepartment;
}
set
{
if ((this._CertificationDepartment != value))
{
this.OnCertificationDepartmentChanging(value);
this.SendPropertyChanging();
this._CertificationDepartment = value;
this.SendPropertyChanged("CertificationDepartment");
this.OnCertificationDepartmentChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_InApproveManager_EquipmentInItem_Base_SpecialEquipment", Storage="_Base_SpecialEquipment", ThisKey="SpecialEquipmentId", OtherKey="SpecialEquipmentId", IsForeignKey=true)]
public Base_SpecialEquipment Base_SpecialEquipment
{