123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace cuidian.OpenApi.Api
- {
- /// <summary>
- /// 其他出库 API
- /// </summary>
- public class OtheroutApi : BasicApi
- {
- public const string RESOURCE_ID = "otherout";
- public OtheroutApi()
- : base(RESOURCE_ID) { }
- }
- }
|