Browse Source

提交版本

master
学 赵 1 year ago
parent
commit
6bd3bb3d8a
  1. 5
      code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs
  2. 3
      code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs
  3. 12
      code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/Syncs/PendingDeductionService.cs
  4. 131
      code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TED_SA_INV.cs
  5. 32
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs
  6. 5870
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230904064849_202309040005.Designer.cs
  7. 246
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230904064849_202309040005.cs
  8. 139
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs

5
code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs

@ -75,10 +75,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ
_invMng = invMng;
}
/// <summary>
/// 通过审核
/// </summary>
@ -286,7 +282,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ
};
entity.INVOICE_NOT_SETTLE = notquery.ToList();
entity.INVOICE_MAP_GROUP = mquery.ToList();
entity.ADJ_DETAIL = adjQuery.ToList();
return entity;

3
code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs

@ -44,9 +44,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ
List<CustomCondition> customConditionList = new List<CustomCondition>();
customConditionList.Add(new CustomCondition() { Name = "BillNumList", Value = string.Join(",", p_list) });
var first=detailist.FirstOrDefault();
customConditionList.Add(new CustomCondition() { Name = "Type", Value = first.BusinessType.ToString()});
customConditionList.Add(new CustomCondition() { Name = "IsOut", Value = "out" });
var ls = _repository.Where(p => p_list.Contains(p.BillNum)).ToList();

12
code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/Syncs/PendingDeductionService.cs

@ -284,6 +284,18 @@ public class PendingDeductionService : ApplicationService, ITransientDependency,
}
_dbcontext.BulkUpdate(hbpoList);
}
var invoiceList = _dbcontext.Set<INVOICE_GRP>().Where(p => billList.Contains(p.InvbillNum)).ToList();
if (invoiceList.Count > 0)
{
foreach (var item in invoiceList)
{
if (flag == true)
{
item.State = SettleBillState.;
}
}
_dbcontext.BulkUpdate(invoiceList);
}
}
// _emailSender.SendAsync(e)
// 提交事务

131
code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TED_SA_INV.cs

@ -0,0 +1,131 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Domain.Entities.Auditing;
namespace Win.Sfs.SettleAccount.Entities.BQ;
public class TED_SA_INV : AuditedAggregateRoot<Guid>
{
/// <summary>
/// 发票号
/// </summary>
public string invoiceNumber { set; get; }
/// <summary>
/// 结算系统发票号
/// </summary>
public string sasInvoiceNumber { set; get; }
/// <summary>
/// 客户代码
/// </summary>
public string Customer { set; get; }
/// <summary>
/// 开票至
/// </summary>
public string BillTo { set; get; }
/// <summary>
/// 发票日期
/// </summary>
public DateTime InvoiceDate { set; get; }
/// <summary>
/// 地点
/// </summary>
public string Site { set; get; }
/// <summary>
/// 单据类型
/// </summary>
public string TYPE { set; get; }
/// <summary>
/// 零件号
/// </summary>
public string PartNumber { set; get; }
/// <summary>
/// 发票数量
/// </summary>
public decimal InvoiceQuatity { set; get; }
/// <summary>
/// 发票价格
/// </summary>
public decimal Price { set; get; }
/// <summary>
/// 供应商
/// </summary>
public string Supplier { set; get; }
/// <summary>
/// 备注
/// </summary>
public string Remark { set; get; }
/// <summary>
/// 发票未税金额
/// </summary>
public decimal InvoiceNetAmount { set; get; }
/// <summary>
/// 发票税额
/// </summary>
public decimal InvoiceTaxAmount { set; get; }
/// <summary>
/// 税率
/// </summary>
public decimal TaxRate { set; get; }
/// <summary>
/// 库位
/// </summary>
public string Location { set; get; }
/// <summary>
/// 发票未税尾差
/// </summary>
public decimal InvoiceNet { set; get; }
/// <summary>
/// 发票税额尾差
/// </summary>
public decimal InvoiceTax { set; get; }
/// <summary>
/// 开始时间
/// </summary>
public DateTime begintime { set; get; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime endtime { set; get; }
public TED_SA_INV(string invoiceNumber, string sasInvoiceNumber, string customer, string billTo, DateTime invoiceDate, string site, string tYPE, string partNumber, decimal invoiceQuatity, decimal price, string supplier, string remark, decimal invoiceNetAmount, decimal invoiceTaxAmount, decimal taxRate, string location, decimal invoiceNet, decimal invoiceTax, DateTime begintime, DateTime endtime)
{
this.invoiceNumber = invoiceNumber;
this.sasInvoiceNumber = sasInvoiceNumber;
Customer = customer;
BillTo = billTo;
InvoiceDate = invoiceDate;
Site = site;
TYPE = tYPE;
PartNumber = partNumber;
InvoiceQuatity = invoiceQuatity;
Price = price;
Supplier = supplier;
Remark = remark;
InvoiceNetAmount = invoiceNetAmount;
InvoiceTaxAmount = invoiceTaxAmount;
TaxRate = taxRate;
Location = location;
InvoiceNet = invoiceNet;
InvoiceTax = invoiceTax;
this.begintime = begintime;
this.endtime = endtime;
}
public TED_SA_INV()
{
}
}

32
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs

@ -112,6 +112,9 @@ namespace Win.Sfs.SettleAccount
builder.ConfigureBBAC_PD(options);
builder.ConfigureHBPO_PD(options);
builder.ConfigurePUB_PD(options);
builder.ConfigureTED_SA_INV(options);
//大众发票导入
//builder.ConfigureInvoice(options);
//builder.ConfigureInvoiceVersion(options);
@ -1258,6 +1261,35 @@ namespace Win.Sfs.SettleAccount
});
}
private static void ConfigureTED_SA_INV(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options)
{
builder.Entity<TED_SA_INV>(b =>
{
b.ToTable($"{options.TablePrefix}_TED_SA_INV", options.Schema);
b.ConfigureByConvention();
b.Property(x => x.invoiceNumber).HasMaxLength(50);
b.Property(x => x.sasInvoiceNumber).HasMaxLength(50);
b.Property(x => x.Customer).HasMaxLength(50);
b.Property(x => x.BillTo).HasMaxLength(50);
b.Property(x => x.Site).HasMaxLength(50);
b.Property(x => x.TYPE).HasMaxLength(50);
b.Property(x => x.PartNumber).HasMaxLength(50);
b.Property(x => x.Supplier).HasMaxLength(50);
b.Property(x => x.Remark).HasMaxLength(50);
b.Property(x => x.Location).HasMaxLength(50);
b.Property(x => x.ConcurrencyStamp).HasMaxLength(50);
});
}
private static void ConfigureBBAC_ADJ_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options)
{
//builder.Entity<BBAC_ADJ_DETAIL>(b =>

5870
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230904064849_202309040005.Designer.cs

File diff suppressed because it is too large

246
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230904064849_202309040005.cs

@ -0,0 +1,246 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace Win.Sfs.SettleAccount.Migrations
{
public partial class _202309040005 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
//migrationBuilder.DropIndex(
// name: "IX_Set_VmiReplenished_ChangedTime",
// table: "Set_VmiReplenished");
//migrationBuilder.DropIndex(
// name: "IX_Set_VmiLog_ChangedTime",
// table: "Set_VmiLog");
migrationBuilder.AlterColumn<DateTime>(
name: "UpdatedTime",
table: "Set_VmiLog",
type: "datetime2",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "datetime2",
oldDefaultValueSql: "getdate()");
migrationBuilder.CreateTable(
name: "Set_TED_SA_INV",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
invoiceNumber = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
sasInvoiceNumber = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
Customer = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
BillTo = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
InvoiceDate = table.Column<DateTime>(type: "datetime2", nullable: false),
Site = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
TYPE = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
PartNumber = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
InvoiceQuatity = table.Column<decimal>(type: "decimal(18,2)", nullable: false),
Price = table.Column<decimal>(type: "decimal(18,2)", nullable: false),
Supplier = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
Remark = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
InvoiceNetAmount = table.Column<decimal>(type: "decimal(18,2)", nullable: false),
InvoiceTaxAmount = table.Column<decimal>(type: "decimal(18,2)", nullable: false),
TaxRate = table.Column<decimal>(type: "decimal(18,2)", nullable: false),
Location = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
InvoiceNet = table.Column<decimal>(type: "decimal(18,2)", nullable: false),
InvoiceTax = table.Column<decimal>(type: "decimal(18,2)", nullable: false),
begintime = table.Column<DateTime>(type: "datetime2", nullable: false),
endtime = table.Column<DateTime>(type: "datetime2", nullable: false),
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
ConcurrencyStamp = table.Column<string>(type: "nvarchar(50)", maxLength: 50, 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)
},
constraints: table =>
{
table.PrimaryKey("PK_Set_TED_SA_INV", x => x.Id);
});
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("185c5968-e02b-267e-db2f-225fccfc9716"),
column: "ConcurrencyStamp",
value: "b9e638afef8b4de097fc683516354089");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("1bb02f67-ed05-6cc1-1507-502e8f6c7a31"),
column: "ConcurrencyStamp",
value: "50529732e41e474cb6d6908a8ec88099");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("49b1da12-418c-544d-fe8b-be7e5b572452"),
column: "ConcurrencyStamp",
value: "f25b1fe5c17a40d18e18752ce0009d65");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("6f68fc8f-b058-c3f4-e07d-722c61f3f7fa"),
column: "ConcurrencyStamp",
value: "e91d573f386b42ae8eb6bf32a38bc483");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("7a0dc087-a859-5863-eb6e-56f588bd779e"),
column: "ConcurrencyStamp",
value: "c5726eb21c9445de91546c7f1c71efac");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("8f7dc23d-e2e9-3691-cfe9-545bb958e3f2"),
column: "ConcurrencyStamp",
value: "d247508e91324e40ac5754ede500b1ac");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("b9b9c79f-4894-474b-4f67-b1ec121c41e5"),
column: "ConcurrencyStamp",
value: "2f60da6b559d48a19c1817213f1528d6");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("c09c23ea-815f-1b43-4476-2365a8d9a60b"),
column: "ConcurrencyStamp",
value: "18ec8f18b9434fa4baaa2fcb5e24c41b");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("c1f71240-1b81-0107-8b23-ddc9811a3efe"),
column: "ConcurrencyStamp",
value: "10aadf01ae724c359846cf31aab2b31b");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("ef3d8e8a-a88e-ca1f-e615-714c6bc48824"),
column: "ConcurrencyStamp",
value: "0ebe68a46be34b078560896901dd380d");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("f306b380-47e5-5c01-b902-67ca4113a8f4"),
column: "ConcurrencyStamp",
value: "28715471b0bd426292d154ae294bcaf4");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Set_TED_SA_INV");
migrationBuilder.AlterColumn<DateTime>(
name: "UpdatedTime",
table: "Set_VmiLog",
type: "datetime2",
nullable: false,
defaultValueSql: "getdate()",
oldClrType: typeof(DateTime),
oldType: "datetime2");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("185c5968-e02b-267e-db2f-225fccfc9716"),
column: "ConcurrencyStamp",
value: "119eda96252e4bd58016d77b0bf1f43b");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("1bb02f67-ed05-6cc1-1507-502e8f6c7a31"),
column: "ConcurrencyStamp",
value: "3bd216de9cdf423ab81dc6cf014f8616");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("49b1da12-418c-544d-fe8b-be7e5b572452"),
column: "ConcurrencyStamp",
value: "24fd0b376e354409a5bcdec267b72b2d");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("6f68fc8f-b058-c3f4-e07d-722c61f3f7fa"),
column: "ConcurrencyStamp",
value: "7884254f65f7422da2abe11929da3f6b");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("7a0dc087-a859-5863-eb6e-56f588bd779e"),
column: "ConcurrencyStamp",
value: "229a34c072454e7d949556e07a9f1e1f");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("8f7dc23d-e2e9-3691-cfe9-545bb958e3f2"),
column: "ConcurrencyStamp",
value: "313eaf08e98642ec9b7531ac5e1575c9");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("b9b9c79f-4894-474b-4f67-b1ec121c41e5"),
column: "ConcurrencyStamp",
value: "1680a6235f8d40f092e576028cde752a");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("c09c23ea-815f-1b43-4476-2365a8d9a60b"),
column: "ConcurrencyStamp",
value: "0464f68915234385b952314fefffc134");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("c1f71240-1b81-0107-8b23-ddc9811a3efe"),
column: "ConcurrencyStamp",
value: "45a3d39659e34ef3bee5b93bb5781412");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("ef3d8e8a-a88e-ca1f-e615-714c6bc48824"),
column: "ConcurrencyStamp",
value: "0c40557cb16c4c079fa836f5337875ed");
migrationBuilder.UpdateData(
table: "Set_JobItem",
keyColumn: "Id",
keyValue: new Guid("f306b380-47e5-5c01-b902-67ca4113a8f4"),
column: "ConcurrencyStamp",
value: "9f16199bb6f34f14a193a7ae7fa700be");
migrationBuilder.CreateIndex(
name: "IX_Set_VmiReplenished_ChangedTime",
table: "Set_VmiReplenished",
column: "ChangedTime")
.Annotation("SqlServer:Clustered", true);
migrationBuilder.CreateIndex(
name: "IX_Set_VmiLog_ChangedTime",
table: "Set_VmiLog",
column: "ChangedTime")
.Annotation("SqlServer:Clustered", true);
}
}
}

139
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs

@ -4407,6 +4407,113 @@ namespace Win.Sfs.SettleAccount.Migrations
b.ToTable("Set_SyncPositionFlag");
});
modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BQ.TED_SA_INV", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("uniqueidentifier");
b.Property<string>("BillTo")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasMaxLength(50)
.HasColumnType("nvarchar(50)")
.HasColumnName("ConcurrencyStamp");
b.Property<DateTime>("CreationTime")
.HasColumnType("datetime2")
.HasColumnName("CreationTime");
b.Property<Guid?>("CreatorId")
.HasColumnType("uniqueidentifier")
.HasColumnName("CreatorId");
b.Property<string>("Customer")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("ExtraProperties")
.HasColumnType("nvarchar(max)")
.HasColumnName("ExtraProperties");
b.Property<DateTime>("InvoiceDate")
.HasColumnType("datetime2");
b.Property<decimal>("InvoiceNet")
.HasColumnType("decimal(18,2)");
b.Property<decimal>("InvoiceNetAmount")
.HasColumnType("decimal(18,2)");
b.Property<decimal>("InvoiceQuatity")
.HasColumnType("decimal(18,2)");
b.Property<decimal>("InvoiceTax")
.HasColumnType("decimal(18,2)");
b.Property<decimal>("InvoiceTaxAmount")
.HasColumnType("decimal(18,2)");
b.Property<DateTime?>("LastModificationTime")
.HasColumnType("datetime2")
.HasColumnName("LastModificationTime");
b.Property<Guid?>("LastModifierId")
.HasColumnType("uniqueidentifier")
.HasColumnName("LastModifierId");
b.Property<string>("Location")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("PartNumber")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<decimal>("Price")
.HasColumnType("decimal(18,2)");
b.Property<string>("Remark")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("Site")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("Supplier")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("TYPE")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<decimal>("TaxRate")
.HasColumnType("decimal(18,2)");
b.Property<DateTime>("begintime")
.HasColumnType("datetime2");
b.Property<DateTime>("endtime")
.HasColumnType("datetime2");
b.Property<string>("invoiceNumber")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("sasInvoiceNumber")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.HasKey("Id");
b.ToTable("Set_TED_SA_INV");
});
modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BQ.Vmi.JobItem", b =>
{
b.Property<Guid>("Id")
@ -4453,7 +4560,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("ef3d8e8a-a88e-ca1f-e615-714c6bc48824"),
ConcurrencyStamp = "0c40557cb16c4c079fa836f5337875ed",
ConcurrencyStamp = "0ebe68a46be34b078560896901dd380d",
Cron = "0 0 8 26 *",
IsDisabled = false,
IsRunning = false,
@ -4463,7 +4570,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("185c5968-e02b-267e-db2f-225fccfc9716"),
ConcurrencyStamp = "119eda96252e4bd58016d77b0bf1f43b",
ConcurrencyStamp = "b9e638afef8b4de097fc683516354089",
Cron = "0 0/1 * * * ?",
IsDisabled = false,
IsRunning = false,
@ -4473,7 +4580,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("1bb02f67-ed05-6cc1-1507-502e8f6c7a31"),
ConcurrencyStamp = "3bd216de9cdf423ab81dc6cf014f8616",
ConcurrencyStamp = "50529732e41e474cb6d6908a8ec88099",
Cron = "0 0/1 * * * ?",
IsDisabled = false,
IsRunning = false,
@ -4483,7 +4590,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("b9b9c79f-4894-474b-4f67-b1ec121c41e5"),
ConcurrencyStamp = "1680a6235f8d40f092e576028cde752a",
ConcurrencyStamp = "2f60da6b559d48a19c1817213f1528d6",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4493,7 +4600,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("49b1da12-418c-544d-fe8b-be7e5b572452"),
ConcurrencyStamp = "24fd0b376e354409a5bcdec267b72b2d",
ConcurrencyStamp = "f25b1fe5c17a40d18e18752ce0009d65",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4503,7 +4610,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("7a0dc087-a859-5863-eb6e-56f588bd779e"),
ConcurrencyStamp = "229a34c072454e7d949556e07a9f1e1f",
ConcurrencyStamp = "c5726eb21c9445de91546c7f1c71efac",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4513,7 +4620,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("6f68fc8f-b058-c3f4-e07d-722c61f3f7fa"),
ConcurrencyStamp = "7884254f65f7422da2abe11929da3f6b",
ConcurrencyStamp = "e91d573f386b42ae8eb6bf32a38bc483",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4523,7 +4630,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("f306b380-47e5-5c01-b902-67ca4113a8f4"),
ConcurrencyStamp = "9f16199bb6f34f14a193a7ae7fa700be",
ConcurrencyStamp = "28715471b0bd426292d154ae294bcaf4",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4533,7 +4640,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("8f7dc23d-e2e9-3691-cfe9-545bb958e3f2"),
ConcurrencyStamp = "313eaf08e98642ec9b7531ac5e1575c9",
ConcurrencyStamp = "d247508e91324e40ac5754ede500b1ac",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4543,7 +4650,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("c1f71240-1b81-0107-8b23-ddc9811a3efe"),
ConcurrencyStamp = "45a3d39659e34ef3bee5b93bb5781412",
ConcurrencyStamp = "10aadf01ae724c359846cf31aab2b31b",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4553,7 +4660,7 @@ namespace Win.Sfs.SettleAccount.Migrations
new
{
Id = new Guid("c09c23ea-815f-1b43-4476-2365a8d9a60b"),
ConcurrencyStamp = "0464f68915234385b952314fefffc134",
ConcurrencyStamp = "18ec8f18b9434fa4baaa2fcb5e24c41b",
Cron = "0 0/30 * * * ? ",
IsDisabled = false,
IsRunning = false,
@ -4786,9 +4893,7 @@ namespace Win.Sfs.SettleAccount.Migrations
.HasColumnType("nvarchar(max)");
b.Property<DateTime>("UpdatedTime")
.ValueGeneratedOnAddOrUpdate()
.HasColumnType("datetime2")
.HasDefaultValueSql("getdate()");
.HasColumnType("datetime2");
b.Property<string>("VinCode")
.HasColumnType("nvarchar(max)");
@ -4798,9 +4903,6 @@ namespace Win.Sfs.SettleAccount.Migrations
b.HasKey("Id");
b.HasIndex("ChangedTime")
.IsClustered();
b.ToTable("Set_VmiLog");
});
@ -4936,9 +5038,6 @@ namespace Win.Sfs.SettleAccount.Migrations
b.HasKey("Id");
b.HasIndex("ChangedTime")
.IsClustered();
b.ToTable("Set_VmiReplenished");
});

Loading…
Cancel
Save