22
schangxiang@126.com
2024-12-12 1daeb924fb62c47ae8fc4f9fed710d19b8ea113e
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
 
using iWareModel;
using iWareModel.Entity;
using iWareModel.Entity.Device;
using iWareSql.DBModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using XiGang.Core.Model.PostParamModels;
using XiGang.Core.Model.PostParamModels.Task;
 
namespace iWareCC.WCF
{
    // 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的接口名“ICCWcfService”。
    [ServiceContract]
    public interface ICCWcfService
    {
        /// <summary>
        /// 模式是否正在运行
        /// </summary>
        /// <returns></returns>
        [OperationContract]
        bool IsStartedModel();
 
        /// <summary>
        /// 补板工位允许进板
        /// </summary>
        /// <returns></returns>
        [OperationContract]
        FunRetEntity WriteStation_AllowIn();
 
 
    }
}