* Further improvements for Marelli PackingList

This commit is contained in:
2025-09-11 21:08:31 +02:00
parent 50a25ff996
commit 01350f0146
10 changed files with 420 additions and 39 deletions

View File

@@ -7,4 +7,5 @@ public class WzClientDto
public int? CustomerSequence { get; set; }
public DateTime CreatedDate { get; set; }
public string Name { get; set; }
public string ShortName { get; set; }
}

View File

@@ -7,4 +7,5 @@ public class WzClient
public int? CustomerSequence { get; set; }
public DateTime CreatedDate { get; set; }
public string Name { get; set; }
public string ShortName { get; set; }
}

View File

@@ -954,6 +954,11 @@ namespace SytelineSaAppEfDataModel
.HasColumnName("Name")
.HasMaxLength(255)
.IsRequired(false);
entity.Property(e => e.ShortName)
.HasColumnName("ShortName")
.HasMaxLength(30)
.IsRequired(false);
});
modelBuilder.Entity<WzRowMeyle>(entity =>
@@ -2559,7 +2564,7 @@ namespace SytelineSaAppEfDataModel
.HasMaxLength(50)
.IsRequired(false);
entity.Property(e => e.WzNumber)
entity.Property(e => e.FaIndex)
.HasColumnName("fa_index")
.HasMaxLength(30)
.IsRequired(false);