From 068d11e2dfcf8129b33f491218c6f0e6feb458d2 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 7 Jul 2021 18:19:02 +0000 Subject: [PATCH] =?UTF-8?q?Gera=C3=A7=C3=A3o=20dos=20POJOs=20do=20erpx=5Ff?= =?UTF-8?q?nd/produto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/model/produto/e001pes.ts | 57 +++++++++++++++++++++++++++++++++ lib/model/produto/e095pes.ts | 43 +++++++++++++++++++++++++ lib/model/produto/enumTipMer.ts | 19 +++++++++++ lib/model/produto/equipment.ts | 45 ++++++++++++++++++++++++++ 4 files changed, 164 insertions(+) create mode 100644 lib/model/produto/e001pes.ts create mode 100644 lib/model/produto/e095pes.ts create mode 100644 lib/model/produto/enumTipMer.ts create mode 100644 lib/model/produto/equipment.ts diff --git a/lib/model/produto/e001pes.ts b/lib/model/produto/e001pes.ts new file mode 100644 index 0000000..725b760 --- /dev/null +++ b/lib/model/produto/e001pes.ts @@ -0,0 +1,57 @@ +/** + * Produto + * Serviço de Produto do ERPX + * + * + * Contact: seniorx-dev@senior.com.br + * + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen.git + * Do not edit the class manually. + */ +import { E095pes } from './e095pes'; +import { EnumSitReg } from './enumSitReg'; +import { EnumTipMer } from './enumTipMer'; + + +export interface E001pes { + /** + * + */ + usualt?: string; + /** + * Indica se o registro foi excluído + */ + excluido?: boolean; + tipMer?: EnumTipMer; + /** + * + */ + dthger?: Date; + /** + * Nome + */ + nomPes: string; + /** + * Nome fantasia + */ + apePes: string; + /** + * + */ + dthalt?: Date; + sitPes: EnumSitReg; + /** + * + */ + id?: string; + e095pes?: E095pes; + /** + * Código + */ + codPes: number; + /** + * + */ + usuger?: string; +} diff --git a/lib/model/produto/e095pes.ts b/lib/model/produto/e095pes.ts new file mode 100644 index 0000000..9e1d421 --- /dev/null +++ b/lib/model/produto/e095pes.ts @@ -0,0 +1,43 @@ +/** + * Produto + * Serviço de Produto do ERPX + * + * + * Contact: seniorx-dev@senior.com.br + * + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen.git + * Do not edit the class manually. + */ +import { E001pes } from './e001pes'; +import { EnumSitReg } from './enumSitReg'; + + +export interface E095pes { + /** + * + */ + usualt?: string; + sitFor: EnumSitReg; + /** + * Indica se o registro foi excluído + */ + excluido?: boolean; + /** + * + */ + dthger?: Date; + e001pes?: E001pes; + /** + * + */ + dthalt?: Date; + /** + * + */ + id?: string; + /** + * + */ + usuger?: string; +} diff --git a/lib/model/produto/enumTipMer.ts b/lib/model/produto/enumTipMer.ts new file mode 100644 index 0000000..5e8f8be --- /dev/null +++ b/lib/model/produto/enumTipMer.ts @@ -0,0 +1,19 @@ +/** + * Produto + * Serviço de Produto do ERPX + * + * + * Contact: seniorx-dev@senior.com.br + * + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen.git + * Do not edit the class manually. + */ + + +export type EnumTipMer = 'VI' | 'VE'; + +export const EnumTipMer = { + VI: 'VI' as EnumTipMer, + VE: 'VE' as EnumTipMer +}; diff --git a/lib/model/produto/equipment.ts b/lib/model/produto/equipment.ts new file mode 100644 index 0000000..baeab3e --- /dev/null +++ b/lib/model/produto/equipment.ts @@ -0,0 +1,45 @@ +/** + * Produto + * Serviço de Produto do ERPX + * + * + * Contact: seniorx-dev@senior.com.br + * + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen.git + * Do not edit the class manually. + */ +import { E001pes } from './e001pes'; + + +export interface Equipment { + /** + * + */ + usualt?: string; + /** + * Código do equipamento + */ + code: string; + /** + * + */ + dthger?: Date; + person: E001pes; + /** + * Descrição do equipamento + */ + description: string; + /** + * + */ + dthalt?: Date; + /** + * + */ + id?: string; + /** + * + */ + usuger?: string; +}