步步为盈
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.

30 lines
873 B

3 years ago
using System;
using System.Collections.Generic;
using System.Text;
using Yitter.IdGenerator;
namespace BBWY.Server.Business
{
public class OrderSkuSaleDetailSyncBusiness : BaseBusiness
{
public OrderSkuSaleDetailSyncBusiness(IFreeSql fsql, NLogManager nLogManager, IIdGenerator idGenerator) : base(fsql, nLogManager, idGenerator)
{
}
public void SyncOrderSkuSaleDetail(long shopId, DateTime startDate, DateTime endDate)
{
StatisticsOrderSkuSaleDaily(shopId, startDate, endDate);
}
public void SyncAllShopOrderSkuSaleDetail(DateTime startDate, DateTime endDate)
{
StatisticsOrderSkuSaleDaily(null, startDate, endDate);
}
private void StatisticsOrderSkuSaleDaily(long? shopId, DateTime startDate, DateTime endDate)
{
}
}
}