Class mbc_db_modelbase
public class mbc_db_modelbase : StringEntityBase, IEntityBase<string>, INotifyPropertyChanged, IDataErrorInfo
- Inheritance
-
mbc_db_modelbase
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
mbc_db_modelbase()
public mbc_db_modelbase()
Properties
CDATE
[Browsable(false)]
[Display(Name = "创建时间")]
public DateTime CDATE { get; set; }
Property Value
Error
Gets an error message indicating what is wrong with this object.
[NotMapped]
[Browsable(false)]
public string Error { get; }
Property Value
- string
An error message indicating what is wrong with this object. The default is an empty string ("").
ISENBLED
[Browsable(false)]
[Display(Name = "是否可用")]
public int ISENBLED { get; set; }
Property Value
this[string]
Gets the error message for the property with the given name.
[Browsable(false)]
public string this[string columnName] { get; }
Parameters
columnName
stringThe name of the property whose error message to get.
Property Value
- string
The error message for the property. The default is an empty string ("").
UDATE
[Browsable(false)]
[Display(Name = "修改时间")]
public DateTime UDATE { get; set; }
Property Value
Methods
RaisePropertyChanged(string)
public virtual void RaisePropertyChanged(string propertyName = "")
Parameters
propertyName
string
Events
PropertyChanged
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged