wanggang
1 year ago
10 changed files with 4439 additions and 51 deletions
File diff suppressed because it is too large
@ -0,0 +1,53 @@ |
|||
using System; |
|||
using Microsoft.EntityFrameworkCore.Migrations; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Migrations |
|||
{ |
|||
public partial class _202307193 : Migration |
|||
{ |
|||
protected override void Up(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.CreateTable( |
|||
name: "Set_TaskJob", |
|||
columns: table => new |
|||
{ |
|||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|||
Type = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|||
State = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|||
TaskId = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|||
Name = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|||
ActionName = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|||
Error = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|||
Creator = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|||
Email = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|||
FileName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|||
RealFileName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|||
RealDownFileName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|||
DownFileName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|||
ServiceName = table.Column<string>(type: "nvarchar(300)", maxLength: 300, nullable: true), |
|||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|||
BranchId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|||
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|||
Remark = table.Column<string>(type: "nvarchar(max)", nullable: true) |
|||
}, |
|||
constraints: table => |
|||
{ |
|||
table.PrimaryKey("PK_Set_TaskJob", x => x.Id); |
|||
}); |
|||
} |
|||
|
|||
protected override void Down(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.DropTable( |
|||
name: "Set_TaskJob"); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using TaskJob.EventArgs; |
|||
using TaskJob.Interfaces; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace SettleAccount.Job.Services.Report |
|||
{ |
|||
/// <summary>
|
|||
/// Pub结算发运对比导出服务
|
|||
/// </summary>
|
|||
public class PubSaSeCompareExportService: ITransientDependency, IExportJob |
|||
{ |
|||
public PubSaSeCompareExportService() { } |
|||
|
|||
/// <summary>
|
|||
/// 导出
|
|||
/// </summary>
|
|||
public string ExportFile(Guid id, List<string> exportName, List<CustomCondition> property) |
|||
{ |
|||
return this.GetType().FullName; |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue