-
Notifications
You must be signed in to change notification settings - Fork 0
/
structsModelo.h
106 lines (85 loc) · 1.36 KB
/
structsModelo.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#ifndef STRUCTSMODELO_H
#define STRUCTSMODELO_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define CLIENTE 0
#define OS 1
#define ATIVIDADE 2
#define EMPRESA 3
typedef struct servicos Servicos;
typedef struct cliente Cliente;
typedef struct ordemServico OrdemServico;
typedef struct data Data;
typedef struct no No;
typedef struct empresa Empresa;
typedef struct atividade Atividade;
typedef struct descricaoAtividade DescricaoAtividade;
/*
Responsavel: Augusto Moreno
*/
struct atividade{
int codigoCliente;
int codigoOs;
int codigoAtividade;
int qtdHorasGastas;
};
/*
Responsavel: Augusto Moreno
*/
struct descricaoAtividade{
char* descricao;
float valorHora;
};
/*
Responsavel: Marcelo Augusto
*/
/*
Responsavel: Marcelo Augusto
*/
struct cliente{
int codigo;
char* nome;
char* endereco;
char* bairro;
char* cep;
char* cidade;
char* estado;
char* telefone;
};
/*
Responsavel: Marcelo Augusto
*/
struct empresa{
char* nome;
};
/*
Responsavel: Marcelo Augusto
*/
struct data{
int dia;
int mes;
int ano;
};
/*
Responsavel: Marcelo Augusto
*/
struct ordemServico{
int codigoCliente;
int codigoOrdemServico;
char* descricaoSolicitacao;
char* prioridade;
Data dataSolicitacao;
char status;
};
/*
Responsavel: Marcelo Augusto
*/
struct no{
int tipoInformacao;
void* informacao;
No *prox;
No *filho;
};
#endif