-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task architecture app #6
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Проверил
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Переделать
class_diagram.md
Outdated
`AccountingForOrders` | ||
## Учет клиентов |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`AccountingForOrders` | |
## Учет клиентов | |
## Учет клиентов | |
`AccountingForOrders` |
class_diagram.md
Outdated
class AOrder { | ||
<<Abstract>> | ||
|
||
+ sring number | ||
+ string data | ||
+ string comments | ||
} | ||
AOrder <|-- OrderItem | ||
OrderItem *-- ProductQuantity | ||
OrderItem *-- ClientYL | ||
class OrderItem { | ||
+ string plann_date_of_execution | ||
+ string fact_date of execution | ||
+ vector<ProductQuantity> products | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Точно тут должно находиться?
class_diagram.md
Outdated
class AOrder { | ||
<<Abstract>> | ||
|
||
+ sring number | ||
+ string data | ||
+ string comments | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❓ Кажется этот класс нам не потребуется
class_diagram.md
Outdated
+ Product* product | ||
+ int quantity | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+ int quantity | ||
} | ||
|
||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
``` |
class_diagram.md
Outdated
|
||
AStage <|-- StageItem | ||
class StageItem { | ||
+ string equipment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
указатель на станок
class_diagram.md
Outdated
classDiagram | ||
class EquipmentAccounting { | ||
+ int accession_number | ||
+ string specialist |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
указатель на специалиста/сотрудника
class_diagram.md
Outdated
+ string specialist | ||
+ string name | ||
+ string status | ||
+ string workshop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Для цеха нужно подумать о создании своего класса
class_diagram.md
Outdated
+ int accession_number | ||
+ string specialist | ||
+ string name | ||
+ string status |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Нужно подумать о своём классе
class_diagram.md
Outdated
```mermaid | ||
classDiagram | ||
class EmployeeAccounting{ | ||
+ string full_name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лучше разбить ФИО на три отдельных поля
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Передал ревью более опытному
No description provided.