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; +}