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 VendorApi : BasicApi
- {
- public const string RESOURCE_ID = "vendor";
- public VendorApi()
- : base(RESOURCE_ID) { }
- }
- }
|