1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| using iWareModel;
| using iWareModel.Entity.WCS;
| using System.ServiceModel;
|
| namespace iWareCC.WCF
| {
| // 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的接口名“ICCWcfService”。
| [ServiceContract]
| public interface ICCWcfService
| {
|
| /// 修改优先级
| /// </summary>
| /// <param name="wmsTaskNo"></param>
| /// <param name="priority"></param>
| /// <returns></returns>
| [OperationContract]
| WCSTaskOutput UpdatePriority(string wmsTaskNo, int priority);
| }
| }
|
|