事故警示调整

This commit is contained in:
2025-12-23 09:58:51 +08:00
parent 81291b03f7
commit 19c093122b
10 changed files with 127 additions and 24 deletions
+49 -1
View File
@@ -15205,8 +15205,12 @@ namespace Model
private string _Content;
private string _Type;
private string _Address;
private string _Source;
private string _ResponsibleUnit;
private System.DateTime _AccidentDate;
@@ -15233,8 +15237,12 @@ namespace Model
partial void OnTitleChanged();
partial void OnContentChanging(string value);
partial void OnContentChanged();
partial void OnTypeChanging(string value);
partial void OnTypeChanged();
partial void OnAddressChanging(string value);
partial void OnAddressChanged();
partial void OnSourceChanging(string value);
partial void OnSourceChanged();
partial void OnResponsibleUnitChanging(string value);
partial void OnResponsibleUnitChanged();
partial void OnAccidentDateChanging(System.DateTime value);
@@ -15336,7 +15344,27 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string Type
{
get
{
return this._Type;
}
set
{
if ((this._Type != value))
{
this.OnTypeChanging(value);
this.SendPropertyChanging();
this._Type = value;
this.SendPropertyChanged("Type");
this.OnTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(50)")]
public string Address
{
get
@@ -15356,6 +15384,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Source", DbType="NVarChar(50)")]
public string Source
{
get
{
return this._Source;
}
set
{
if ((this._Source != value))
{
this.OnSourceChanging(value);
this.SendPropertyChanging();
this._Source = value;
this.SendPropertyChanged("Source");
this.OnSourceChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibleUnit", DbType="NVarChar(200)")]
public string ResponsibleUnit
{