1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using FObjBase;
using FLY.Thick.Blowing.OBJ_INTERFACE;
using FLY.Thick.Blowing.IService;
using Misc;
using Newtonsoft.Json;
namespace FLY.Thick.Blowing.Client
{
public class BlowingFixServiceClient : BlowingServiceClient, IBlowingFixService
{
protected override Type InterfaceType => typeof(IBlowingFixService);
public BlowingFixServiceClient(UInt32 serverid) : base(serverid) { }
public BlowingFixServiceClient(UInt32 serviceId, string connName) : base(serviceId, connName) { }
#region 功能
/// <summary>
/// 获取 立式旋转架 的 膜距离增量
/// </summary>
/// <param name="begin">开始时间</param>
/// <param name="asyncDelegate">retdata = GetFilmLength3DReponse</param>
/// <param name="asyncContext"></param>
public void GetADList(DateTime begin, AsyncCBHandler asyncDelegate, object asyncContext)
{
Call(nameof(GetADList), new { begin }, asyncDelegate, asyncContext);
}
#endregion
}
}