You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
860 B
27 lines
860 B
using BBWYB.Common.Log;
|
|
using BBWYB.Common.Models;
|
|
using BBWYB.Server.Model.Db;
|
|
using FreeSql;
|
|
using Yitter.IdGenerator;
|
|
|
|
namespace BBWYB.Server.Business
|
|
{
|
|
public class DataRepairBusiness : BaseBusiness, IDenpendency
|
|
{
|
|
private KuaiDi100Manager kuaiDi100Manager;
|
|
public DataRepairBusiness(IFreeSql fsql, NLogManager nLogManager, IIdGenerator idGenerator, KuaiDi100Manager kuaiDi100Manager) : base(fsql, nLogManager, idGenerator)
|
|
{
|
|
this.kuaiDi100Manager = kuaiDi100Manager;
|
|
}
|
|
|
|
public void RepairPurchaseExpressOrder()
|
|
{
|
|
|
|
}
|
|
|
|
public void SubscribeKD100(string waybillNo,string targetCompanyCode)
|
|
{
|
|
kuaiDi100Manager.SubscribeKuaiDi100(waybillNo, targetCompanyCode, "http://bbwyb.qiyue666.com/api/purchaseorder/kuaidi100publish");
|
|
}
|
|
}
|
|
}
|
|
|