IFixService.cs 989 Bytes
Newer Older
1 2 3
using FObjBase;
using FObjBase.Reflect;
using System;
潘栩锋's avatar
潘栩锋 committed
4
using System.Collections.Generic;
5
using System.ComponentModel;
潘栩锋's avatar
潘栩锋 committed
6 7 8 9 10
using System.Linq;
using System.Text;

namespace FLY.Thick.Base.IService
{
潘栩锋's avatar
潘栩锋 committed
11 12 13
    /// <summary>
    /// 定点测量服务
    /// </summary>
14
    public interface IFixService : INotifyPropertyChanged
潘栩锋's avatar
潘栩锋 committed
15
    {
16 17 18 19
        DateTime UpdateTime { get; }

        [Call(typeof(GetFixDatasReponse))]
        void GetFixDatas(AsyncCBHandler asyncDelegate, object asyncContext);
潘栩锋's avatar
潘栩锋 committed
20 21 22
    }


23
    public class GetFixDatasReponse
潘栩锋's avatar
潘栩锋 committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    {
        /// <summary>
        /// 数据, AD数据!!!!!
        /// </summary>
        public int[] ADs;
        /// <summary>
        /// 数据, 厚度数据!!!!!
        /// </summary>
        public double[] thicks;
        /// <summary>
        /// 单数据时间间隔
        /// </summary>
        public TimeSpan ts;
        /// <summary>
        /// 开始时间点
        /// </summary>
        public DateTime time;
潘栩锋's avatar
潘栩锋 committed
41 42
    }
}