OtheroutApi.cs 390 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace cuidian.OpenApi.Api
  7. {
  8. /// <summary>
  9. /// 其他出库 API
  10. /// </summary>
  11. public class OtheroutApi : BasicApi
  12. {
  13. public const string RESOURCE_ID = "otherout";
  14. public OtheroutApi()
  15. : base(RESOURCE_ID) { }
  16. }
  17. }