mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
fix: add missing newlines and improve formatting in various DTO models
This commit is contained in:
@@ -31,8 +31,9 @@ const PARAMETER_CODEC = new ParameterCodec();
|
||||
export class BaseService {
|
||||
constructor(
|
||||
protected config: OmsConfiguration,
|
||||
protected http: HttpClient,
|
||||
) {}
|
||||
protected http: HttpClient
|
||||
) {
|
||||
}
|
||||
|
||||
private _rootUrl: string = '';
|
||||
|
||||
@@ -56,7 +57,7 @@ export class BaseService {
|
||||
*/
|
||||
protected newParams(): HttpParams {
|
||||
return new HttpParams({
|
||||
encoder: PARAMETER_CODEC,
|
||||
encoder: PARAMETER_CODEC
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -235,11 +235,11 @@ export { OrderItemSubsetTaskListItemDTO } from './models/order-item-subset-task-
|
||||
export { OrderItemStatusValuesDTO } from './models/order-item-status-values-dto';
|
||||
export { ResponseArgsOfPayerDTO } from './models/response-args-of-payer-dto';
|
||||
export { ResponseArgsOfShippingAddressDTO } from './models/response-args-of-shipping-address-dto';
|
||||
export { ResponseArgsOfReceiptDTO } from './models/response-args-of-receipt-dto';
|
||||
export { ResponseArgsOfIEnumerableOfReceiptDTO } from './models/response-args-of-ienumerable-of-receipt-dto';
|
||||
export { GenerateCollectiveReceiptsArgs } from './models/generate-collective-receipts-args';
|
||||
export { ResponseArgsOfIEnumerableOfString } from './models/response-args-of-ienumerable-of-string';
|
||||
export { DateRange } from './models/date-range';
|
||||
export { ResponseArgsOfReceiptDTO } from './models/response-args-of-receipt-dto';
|
||||
export { ListResponseArgsOfReceiptListItemDTO } from './models/list-response-args-of-receipt-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfReceiptListItemDTO } from './models/response-args-of-ienumerable-of-receipt-list-item-dto';
|
||||
export { ReceiptListItemDTO } from './models/receipt-list-item-dto';
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { GeoLocation } from './geo-location';
|
||||
export interface AddressDTO extends TouchedBase {
|
||||
export interface AddressDTO extends TouchedBase{
|
||||
|
||||
/**
|
||||
* Apartment
|
||||
*/
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Adress Typ
|
||||
*/
|
||||
export type AddressType = 0 | 1 | 2 | 4 | 8;
|
||||
export type AddressType = 0 | 1 | 2 | 4 | 8;
|
||||
@@ -4,7 +4,8 @@ import { AddressDTO } from './address-dto';
|
||||
import { CommunicationDetailsDTO } from './communication-details-dto';
|
||||
import { OrganisationDTO } from './organisation-dto';
|
||||
import { PersonNamesDTO } from './person-names-dto';
|
||||
export interface AddresseeDTO extends TouchedBase {
|
||||
export interface AddresseeDTO extends TouchedBase{
|
||||
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,8 @@ import { AddressDTO } from './address-dto';
|
||||
import { CommunicationDetailsDTO } from './communication-details-dto';
|
||||
import { Gender } from './gender';
|
||||
import { OrganisationDTO } from './organisation-dto';
|
||||
export interface AddresseeWithReferenceDTO extends EntityReferenceDTO {
|
||||
export interface AddresseeWithReferenceDTO extends EntityReferenceDTO{
|
||||
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
|
||||
@@ -4,45 +4,4 @@
|
||||
* Richtlinie 2003/89/EG (Allergenkennzeichnungsrichtlinie)
|
||||
* https://de.wikipedia.org/wiki/Richtlinie_2003/89/EG_(Allergenkennzeichnungsrichtlinie)
|
||||
*/
|
||||
export type AllergeneType =
|
||||
| 0
|
||||
| 1
|
||||
| 2
|
||||
| 4
|
||||
| 6
|
||||
| 8
|
||||
| 16
|
||||
| 32
|
||||
| 64
|
||||
| 128
|
||||
| 256
|
||||
| 512
|
||||
| 1024
|
||||
| 1536
|
||||
| 2048
|
||||
| 6144
|
||||
| 10240
|
||||
| 18432
|
||||
| 34816
|
||||
| 67584
|
||||
| 133120
|
||||
| 264192
|
||||
| 526336
|
||||
| 1048576
|
||||
| 3145728
|
||||
| 5242880
|
||||
| 9437184
|
||||
| 17825792
|
||||
| 34603008
|
||||
| 68157440
|
||||
| 135266304
|
||||
| 268435456
|
||||
| 805306368
|
||||
| 1342177280
|
||||
| 2415919104
|
||||
| 4563402752
|
||||
| 8858370048
|
||||
| 17448304640
|
||||
| 34628173824
|
||||
| 68987912192
|
||||
| 137438953472;
|
||||
export type AllergeneType = 0 | 1 | 2 | 4 | 6 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 1536 | 2048 | 6144 | 10240 | 18432 | 34816 | 67584 | 133120 | 264192 | 526336 | 1048576 | 3145728 | 5242880 | 9437184 | 17825792 | 34603008 | 68157440 | 135266304 | 268435456 | 805306368 | 1342177280 | 2415919104 | 4563402752 | 8858370048 | 17448304640 | 34628173824 | 68987912192 | 137438953472;
|
||||
@@ -4,6 +4,7 @@
|
||||
* Auocomplete-Ergebnis
|
||||
*/
|
||||
export interface AutocompleteDTO {
|
||||
|
||||
/**
|
||||
* Anzeige / Bezeichner
|
||||
*/
|
||||
|
||||
@@ -5,10 +5,11 @@ import { OrderByDTO } from './order-by-dto';
|
||||
* Suchabfrage
|
||||
*/
|
||||
export interface AutocompleteTokenDTO {
|
||||
|
||||
/**
|
||||
* Filter
|
||||
*/
|
||||
filter?: { [key: string]: string };
|
||||
filter?: {[key: string]: string};
|
||||
|
||||
/**
|
||||
* Fuzzy (0 = off, > 0 = on)
|
||||
|
||||
@@ -6,7 +6,8 @@ import { EntityDTOContainerOfLogisticianDTO } from './entity-dtocontainer-of-log
|
||||
import { PriceDTO } from './price-dto';
|
||||
import { EntityDTOContainerOfShopItemDTO2 } from './entity-dtocontainer-of-shop-item-dto2';
|
||||
import { EntityDTOContainerOfSupplierDTO } from './entity-dtocontainer-of-supplier-dto';
|
||||
export interface AvailabilityDTO extends TouchedBase {
|
||||
export interface AvailabilityDTO extends TouchedBase{
|
||||
|
||||
/**
|
||||
* Art der Verfügbarkeit
|
||||
*/
|
||||
|
||||
@@ -8,6 +8,7 @@ import { AvailabilityType } from './availability-type';
|
||||
* Verfügbarkeit
|
||||
*/
|
||||
export interface AvailabilityDTO2 {
|
||||
|
||||
/**
|
||||
* Alternatives Voraussichtliches Lieferdatum
|
||||
*/
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Art der Verfügbarkeit
|
||||
*/
|
||||
export type AvailabilityType = 0 | 1 | 2 | 32 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384;
|
||||
export type AvailabilityType = 0 | 1 | 2 | 32 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384;
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Verfügbar als
|
||||
*/
|
||||
export type AvailableFor = 0 | 1 | 2 | 4 | 8 | 16 | 32;
|
||||
export type AvailableFor = 0 | 1 | 2 | 4 | 8 | 16 | 32;
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Handelsgewichte / Avoirdupois
|
||||
*/
|
||||
export type Avoirdupois = 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096;
|
||||
export type Avoirdupois = 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096;
|
||||
@@ -4,7 +4,8 @@ import { AddressDTO } from './address-dto';
|
||||
import { BranchType } from './branch-type';
|
||||
import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto';
|
||||
import { EntityDTOContainerOfBranchDTO } from './entity-dtocontainer-of-branch-dto';
|
||||
export interface BranchDTO extends EntityDTOBaseOfBranchDTOAndIBranch {
|
||||
export interface BranchDTO extends EntityDTOBaseOfBranchDTOAndIBranch{
|
||||
|
||||
/**
|
||||
* Addressdaten
|
||||
*/
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
/* tslint:disable */
|
||||
export type BranchType = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
export type BranchType = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
@@ -2,7 +2,8 @@
|
||||
import { AddresseeWithReferenceDTO } from './addressee-with-reference-dto';
|
||||
import { BuyerStatus } from './buyer-status';
|
||||
import { BuyerType } from './buyer-type';
|
||||
export interface BuyerDTO extends AddresseeWithReferenceDTO {
|
||||
export interface BuyerDTO extends AddresseeWithReferenceDTO{
|
||||
|
||||
/**
|
||||
* Auftraggeber-Nummer
|
||||
*/
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Auftraggeberstatus
|
||||
*/
|
||||
export type BuyerStatus = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
export type BuyerStatus = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Auftraggebertyp
|
||||
*/
|
||||
export type BuyerType = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
export type BuyerType = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
@@ -2,7 +2,8 @@
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
import { EntityDTOContainerOfCategoryDTO } from './entity-dtocontainer-of-category-dto';
|
||||
import { EntityDTOContainerOfTenantDTO } from './entity-dtocontainer-of-tenant-dto';
|
||||
export interface CategoryDTO extends EntityDTOBase {
|
||||
export interface CategoryDTO extends EntityDTOBase{
|
||||
|
||||
/**
|
||||
* Schlüssel
|
||||
*/
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/* tslint:disable */
|
||||
export interface ChangeStockStatusCodeValues {
|
||||
|
||||
/**
|
||||
* PK OrderItemSubset
|
||||
*/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
export interface CommunicationDetailsDTO extends TouchedBase {
|
||||
export interface CommunicationDetailsDTO extends TouchedBase{
|
||||
|
||||
/**
|
||||
* E-Mail Adresse
|
||||
*/
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
import { EntityDTOBaseOfCompanyDTOAndICompany } from './entity-dtobase-of-company-dtoand-icompany';
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { EntityDTOContainerOfCompanyDTO } from './entity-dtocontainer-of-company-dto';
|
||||
export interface CompanyDTO extends EntityDTOBaseOfCompanyDTOAndICompany {
|
||||
export interface CompanyDTO extends EntityDTOBaseOfCompanyDTOAndICompany{
|
||||
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Attribut zur Darstellung
|
||||
*/
|
||||
export type ComponentItemDisplayType = 0 | 1 | 2;
|
||||
export type ComponentItemDisplayType = 0 | 1 | 2;
|
||||
@@ -4,7 +4,8 @@ import { EntityDTOContainerOfCategoryDTO } from './entity-dtocontainer-of-catego
|
||||
import { ComponentItemDisplayType } from './component-item-display-type';
|
||||
import { EntityDTOContainerOfItemDTO2 } from './entity-dtocontainer-of-item-dto2';
|
||||
import { QuantityUnitType } from './quantity-unit-type';
|
||||
export interface ComponentItemDTO extends TouchedBase {
|
||||
export interface ComponentItemDTO extends TouchedBase{
|
||||
|
||||
/**
|
||||
* Kategorie des Set-Artikels (nicht Warengruppe)
|
||||
*/
|
||||
|
||||
@@ -3,7 +3,8 @@ import { EntityDTOBaseOfComponentsDTOAndIComponents } from './entity-dtobase-of-
|
||||
import { ComponentItemDTO } from './component-item-dto';
|
||||
import { QuantityUnitType } from './quantity-unit-type';
|
||||
import { SetType } from './set-type';
|
||||
export interface ComponentsDTO extends EntityDTOBaseOfComponentsDTOAndIComponents {
|
||||
export interface ComponentsDTO extends EntityDTOBaseOfComponentsDTOAndIComponents{
|
||||
|
||||
/**
|
||||
* Artikel / Produkte
|
||||
*/
|
||||
|
||||
@@ -3,7 +3,8 @@ import { EntityDTOBaseOfContributorDTOAndIContributor } from './entity-dtobase-o
|
||||
import { OrganisationNamesDTO } from './organisation-names-dto';
|
||||
import { PersonNamesDTO } from './person-names-dto';
|
||||
import { EntityDTOContainerOfTenantDTO } from './entity-dtocontainer-of-tenant-dto';
|
||||
export interface ContributorDTO extends EntityDTOBaseOfContributorDTOAndIContributor {
|
||||
export interface ContributorDTO extends EntityDTOBaseOfContributorDTOAndIContributor{
|
||||
|
||||
/**
|
||||
* Anzeigename
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { EntityDTOContainerOfContributorDTO } from './entity-dtocontainer-of-contributor-dto';
|
||||
export interface ContributorHelperDTO extends TouchedBase {
|
||||
export interface ContributorHelperDTO extends TouchedBase{
|
||||
contributor?: EntityDTOContainerOfContributorDTO;
|
||||
type?: string;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfCountryDTOAndICountry } from './entity-dtobase-of-country-dtoand-icountry';
|
||||
export interface CountryDTO extends EntityDTOBaseOfCountryDTOAndICountry {
|
||||
export interface CountryDTO extends EntityDTOBaseOfCountryDTOAndICountry{
|
||||
|
||||
/**
|
||||
* Standard
|
||||
*/
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* CRUDA (Create, Read, Update, Delete, Archive)
|
||||
*/
|
||||
export type CRUDA = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
export type CRUDA = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
@@ -1,6 +1,7 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
export interface DateRangeDTO extends TouchedBase {
|
||||
export interface DateRangeDTO extends TouchedBase{
|
||||
|
||||
/**
|
||||
* Begin
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Zeitraum
|
||||
* Date range / Zeitraum
|
||||
*/
|
||||
export interface DateRange {
|
||||
|
||||
/**
|
||||
* Beginn
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* tslint:disable */
|
||||
import { OrderItemListItemDTO } from './order-item-list-item-dto';
|
||||
import { OrderItemType } from './order-item-type';
|
||||
export interface DBHOrderItemListItemDTO extends OrderItemListItemDTO {
|
||||
export interface DBHOrderItemListItemDTO extends OrderItemListItemDTO{
|
||||
billingZipCode?: string;
|
||||
externalRepositories?: string;
|
||||
fetchOnDeliveryNote?: boolean;
|
||||
|
||||
@@ -3,22 +3,4 @@
|
||||
/**
|
||||
* Deklarationspflichtige Zusatzstoffe in Lebensmitteln
|
||||
*/
|
||||
export type DeclarableFoodAdditives =
|
||||
| 0
|
||||
| 1
|
||||
| 2
|
||||
| 4
|
||||
| 8
|
||||
| 16
|
||||
| 32
|
||||
| 64
|
||||
| 128
|
||||
| 256
|
||||
| 512
|
||||
| 1024
|
||||
| 2048
|
||||
| 4096
|
||||
| 8192
|
||||
| 16384
|
||||
| 32768
|
||||
| 65536;
|
||||
export type DeclarableFoodAdditives = 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384 | 32768 | 65536;
|
||||
@@ -3,4 +3,4 @@
|
||||
/**
|
||||
* Art des Inhalts
|
||||
*/
|
||||
export type DialogContentType = 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128;
|
||||
export type DialogContentType = 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128;
|
||||
@@ -7,6 +7,7 @@ import { DialogSettings } from './dialog-settings';
|
||||
* Dialog / Meldung
|
||||
*/
|
||||
export interface DialogOfString {
|
||||
|
||||
/**
|
||||
* Aktionen
|
||||
*/
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
/* tslint:disable */
|
||||
export type DialogSettings = 0 | 1 | 2 | 4;
|
||||
export type DialogSettings = 0 | 1 | 2 | 4;
|
||||
@@ -4,6 +4,7 @@
|
||||
* Diff
|
||||
*/
|
||||
export interface DiffDTO {
|
||||
|
||||
/**
|
||||
* Name / Bezeichner
|
||||
*/
|
||||
|
||||
@@ -9,6 +9,7 @@ import { OrganisationDTO } from './organisation-dto';
|
||||
* Anschrift / Kontakt
|
||||
*/
|
||||
export interface DisplayAddresseeDTO {
|
||||
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
import { EntityDTOBaseOfDisplayBranchDTOAndIBranch } from './entity-dtobase-of-display-branch-dtoand-ibranch';
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { CommunicationDetailsDTO } from './communication-details-dto';
|
||||
export interface DisplayBranchDTO extends EntityDTOBaseOfDisplayBranchDTOAndIBranch {
|
||||
export interface DisplayBranchDTO extends EntityDTOBaseOfDisplayBranchDTOAndIBranch{
|
||||
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayLogisticianDTOAndILogistician } from './entity-dtobase-of-display-logistician-dtoand-ilogistician';
|
||||
export interface DisplayLogisticianDTO extends EntityDTOBaseOfDisplayLogisticianDTOAndILogistician {
|
||||
export interface DisplayLogisticianDTO extends EntityDTOBaseOfDisplayLogisticianDTOAndILogistician{
|
||||
|
||||
/**
|
||||
* GLN
|
||||
*/
|
||||
|
||||
@@ -12,7 +12,8 @@ import { DisplayBranchDTO } from './display-branch-dto';
|
||||
import { OrderType } from './order-type';
|
||||
import { DisplayOrderPaymentDTO } from './display-order-payment-dto';
|
||||
import { TermsOfDeliveryDTO } from './terms-of-delivery-dto';
|
||||
export interface DisplayOrderDTO extends EntityDTOBaseOfDisplayOrderDTOAndIOrder {
|
||||
export interface DisplayOrderDTO extends EntityDTOBaseOfDisplayOrderDTOAndIOrder{
|
||||
|
||||
/**
|
||||
* Mögliche Aktionen
|
||||
*/
|
||||
@@ -56,7 +57,7 @@ export interface DisplayOrderDTO extends EntityDTOBaseOfDisplayOrderDTOAndIOrder
|
||||
/**
|
||||
* Zusätzliche Markierungen
|
||||
*/
|
||||
features?: { [key: string]: string };
|
||||
features?: {[key: string]: string};
|
||||
|
||||
/**
|
||||
* Bestellposten
|
||||
|
||||
@@ -6,7 +6,8 @@ import { ProductDTO } from './product-dto';
|
||||
import { PromotionDTO } from './promotion-dto';
|
||||
import { QuantityUnitType } from './quantity-unit-type';
|
||||
import { DisplayOrderItemSubsetDTO } from './display-order-item-subset-dto';
|
||||
export interface DisplayOrderItemDTO extends EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem {
|
||||
export interface DisplayOrderItemDTO extends EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem{
|
||||
|
||||
/**
|
||||
* Bemerkung des Auftraggebers
|
||||
*/
|
||||
@@ -20,7 +21,7 @@ export interface DisplayOrderItemDTO extends EntityDTOBaseOfDisplayOrderItemDTOA
|
||||
/**
|
||||
* Zusätzliche Markierungen (z.B. Abo, ...)
|
||||
*/
|
||||
features?: { [key: string]: string };
|
||||
features?: {[key: string]: string};
|
||||
|
||||
/**
|
||||
* Bestellung
|
||||
|
||||
@@ -3,7 +3,8 @@ import { EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus } from './e
|
||||
import { DateRangeDTO } from './date-range-dto';
|
||||
import { DisplayOrderItemDTO } from './display-order-item-dto';
|
||||
import { OrderItemProcessingStatusValue } from './order-item-processing-status-value';
|
||||
export interface DisplayOrderItemSubsetDTO extends EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus {
|
||||
export interface DisplayOrderItemSubsetDTO extends EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus{
|
||||
|
||||
/**
|
||||
* Abholfachnummer
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment } from './entity-dtobase-of-display-order-payment-dtoand-iread-only-payment';
|
||||
import { PaymentType } from './payment-type';
|
||||
export interface DisplayOrderPaymentDTO extends EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment {
|
||||
export interface DisplayOrderPaymentDTO extends EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment{
|
||||
|
||||
/**
|
||||
* Storniert am
|
||||
*/
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { CRUDA } from './cruda';
|
||||
import { EntityStatus } from './entity-status';
|
||||
export interface EntityDTO extends TouchedBase {
|
||||
export interface EntityDTO extends TouchedBase{
|
||||
|
||||
/**
|
||||
* Zuletzt geändert am
|
||||
*/
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfBranchDTOAndIBranch extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfBranchDTOAndIBranch extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfCompanyDTOAndICompany extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfCompanyDTOAndICompany extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfComponentsDTOAndIComponents extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfComponentsDTOAndIComponents extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfContributorDTOAndIContributor extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfContributorDTOAndIContributor extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfCountryDTOAndICountry extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfCountryDTOAndICountry extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayBranchDTOAndIBranch extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfDisplayBranchDTOAndIBranch extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayLogisticianDTOAndILogistician extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfDisplayLogisticianDTOAndILogistician extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderDTOAndIOrder extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfDisplayOrderDTOAndIOrder extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfFileDTOAndIFile extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfFileDTOAndIFile extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfItemDTOAndIItem2 extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfItemDTOAndIItem2 extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfItemDTOAndIItem extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfItemDTOAndIItem extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfLabelDTOAndILabel extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfLabelDTOAndILabel extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfLogisticianDTOAndILogistician extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfLogisticianDTOAndILogistician extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderDTOAndIOrder extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfOrderDTOAndIOrder extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemDTOAndIOrderItem extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfOrderItemDTOAndIOrderItem extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemSubsetDTOAndIOrderItemStatus extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfOrderItemSubsetDTOAndIOrderItemStatus extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemSubsetTaskDTOAndIOrderItemStatusTask extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfOrderItemSubsetTaskDTOAndIOrderItemStatusTask extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemSubsetTransitionDTOAndIOrderItemStatusTransition extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfOrderItemSubsetTransitionDTOAndIOrderItemStatusTransition extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfPackageDTOAndIPackage extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfPackageDTOAndIPackage extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfPayerDTOAndIPayer extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfPayerDTOAndIPayer extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfPaymentDTOAndIReadOnlyPayment extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfPaymentDTOAndIReadOnlyPayment extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfReceiptDTOAndIReceipt extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfReceiptDTOAndIReceipt extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfReceiptItemDTOAndIReceiptItem extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfReceiptItemDTOAndIReceiptItem extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfShippingAddressDTOAndIShippingAddress extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfShippingAddressDTOAndIShippingAddress extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfShopItemDTOAndIShopItem2 extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfShopItemDTOAndIShopItem2 extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfShopItemDTOAndIShopItem extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfShopItemDTOAndIShopItem extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfStockStatusCodeDTOAndIStockStatusCode extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfStockStatusCodeDTOAndIStockStatusCode extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfSupplierDTOAndISupplier extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfSupplierDTOAndISupplier extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfTenantDTOAndITenant extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfTenantDTOAndITenant extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfTextDTOAndIText extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfTextDTOAndIText extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfUserDTOAndIUser extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfUserDTOAndIUser extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfVATDTOAndIVAT extends EntityDTOBase {}
|
||||
export interface EntityDTOBaseOfVATDTOAndIVAT extends EntityDTOBase{
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTO } from './entity-dto';
|
||||
export interface EntityDTOBase extends EntityDTO {}
|
||||
export interface EntityDTOBase extends EntityDTO{
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { BranchDTO } from './branch-dto';
|
||||
export interface EntityDTOContainerOfBranchDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfBranchDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { CategoryDTO } from './category-dto';
|
||||
export interface EntityDTOContainerOfCategoryDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfCategoryDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { CompanyDTO } from './company-dto';
|
||||
export interface EntityDTOContainerOfCompanyDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfCompanyDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ComponentsDTO } from './components-dto';
|
||||
export interface EntityDTOContainerOfComponentsDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfComponentsDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ContributorDTO } from './contributor-dto';
|
||||
export interface EntityDTOContainerOfContributorDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfContributorDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { CountryDTO } from './country-dto';
|
||||
export interface EntityDTOContainerOfCountryDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfCountryDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { FileDTO } from './file-dto';
|
||||
export interface EntityDTOContainerOfFileDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfFileDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ItemDTO } from './item-dto';
|
||||
export interface EntityDTOContainerOfItemDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfItemDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ItemDTO2 } from './item-dto2';
|
||||
export interface EntityDTOContainerOfItemDTO2 extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfItemDTO2 extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { LabelDTO } from './label-dto';
|
||||
export interface EntityDTOContainerOfLabelDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfLabelDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { LogisticianDTO } from './logistician-dto';
|
||||
export interface EntityDTOContainerOfLogisticianDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfLogisticianDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderDTO } from './order-dto';
|
||||
export interface EntityDTOContainerOfOrderDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfOrderDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderItemDTO } from './order-item-dto';
|
||||
export interface EntityDTOContainerOfOrderItemDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfOrderItemDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderItemSubsetDTO } from './order-item-subset-dto';
|
||||
export interface EntityDTOContainerOfOrderItemSubsetDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfOrderItemSubsetDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderItemSubsetTransitionDTO } from './order-item-subset-transition-dto';
|
||||
export interface EntityDTOContainerOfOrderItemSubsetTransitionDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfOrderItemSubsetTransitionDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { PackageDTO } from './package-dto';
|
||||
export interface EntityDTOContainerOfPackageDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfPackageDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { PayerDTO } from './payer-dto';
|
||||
export interface EntityDTOContainerOfPayerDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfPayerDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { PaymentDTO } from './payment-dto';
|
||||
export interface EntityDTOContainerOfPaymentDTO extends EntityDTOReferenceContainer {
|
||||
export interface EntityDTOContainerOfPaymentDTO extends EntityDTOReferenceContainer{
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user