1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace iBemsDataService.Controllers.Bems.Common
- {
- public class CalculationResult
- {
- public DateTime DateTime { get; set; }
- public double Value { get; set; }
- };
- public class CalculationValue
- {
- public CalculationValue()
- {
- }
- public DateTime DateTime { get; set; }
- public double Value { get; set; }
- };
- public class CalculationValueBudget
- {
- public CalculationValueBudget()
- {
- }
- public DateTime DateTime { get; set; }
- public double Value { get; set; }
- public double Value2 { get; set; }
- };
- public class CalculationValueSType
- {
- public CalculationValueSType()
- {
- }
- public DateTime DateTime { get; set; }
- public double Value { get; set; }
- public int ServiceType { get; set; }
- };
- public class FmsHouseStockEx
- {
- public FmsHouseStockEx()
- {
- }
- public string HouseName { get; set; }
- public string MName { get; set; }
- public int MaterialId { get; set; }
- public string MaterialCode { get; set; }
- public int StockCnt { get; set; }
- };
- }
|