1234567891011121314151617181920212223242526272829303132 |
- (function() {
- BemsWebApplication.FmsWorkCodeEmergencyViewModel = function(data) {
- this.SiteId = ko.observable();
- this.EmergencyId = ko.observable();
- this.Name = ko.observable();
- this.IsUse = ko.observable();
- if(data)
- this.fromJS(data);
- };
- $.extend(BemsWebApplication.FmsWorkCodeEmergencyViewModel.prototype, {
- toJS: function() {
- return {
- SiteId: this.SiteId(),
- EmergencyId: this.EmergencyId(),
- Name: this.Name(),
- IsUse: this.IsUse(),
- };
- },
- fromJS: function(data) {
- if(data) {
- this.SiteId(data.SiteId);
- this.EmergencyId(data.EmergencyId);
- this.Name(data.Name);
- this.IsUse(data.IsUse);
- }
- }
- });
- })();
|