Add PartnerDepot and EkaerHistory entities, update tags
- Introduced PartnerDepot and EkaerHistory entity classes with serialization and DB mapping. - Made ICompanyInfoBase.TaxId nullable. - Added new DB table name constants for PartnerDepot and EkaerHistory. - Added SignalR tag constants for PartnerDepot and EkaerHistory operations. - Updated SQL schema compare connection strings and item order.
This commit is contained in:
parent
d2bdf7e4eb
commit
6f60eaf310
|
|
@ -9,7 +9,7 @@ namespace AyCode.Core.Interfaces;
|
||||||
public interface ICompanyInfoBase
|
public interface ICompanyInfoBase
|
||||||
{
|
{
|
||||||
string Name { get; }
|
string Name { get; }
|
||||||
string TaxId { get; }
|
string? TaxId { get; }
|
||||||
string CountryCode { get; }
|
string CountryCode { get; }
|
||||||
string PostalCode { get; }
|
string PostalCode { get; }
|
||||||
string City { get; }
|
string City { get; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue