You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
533 B
C#
26 lines
533 B
C#
using DS.WMS.Core.HangfireJob.Dtos;
|
|
using Hangfire;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.QuarztJobs.Interface
|
|
{
|
|
public interface IInInvoiceJobService
|
|
{
|
|
|
|
/// <summary>
|
|
/// 定时获取进项发票数据
|
|
/// </summary>
|
|
/// <param name="Id"></param>
|
|
/// <param name="tenantDb"></param>
|
|
/// <returns></returns>
|
|
Task GetInInvoiceData();
|
|
|
|
|
|
}
|
|
}
|