概要

Accessの採用理由

入力フロー

基本情報

Company |-{ Model |-{ Device

erDiagram
	Company ||--o{ Model : CompanyId
	Model ||--o{ Device : ModelId
	
	Company {
		int Id PK
		string CompanyName 
	}
	
	Model {
		int Id PK
		string ModelName
		int CompanyId FK
	}
	
	Device {
		int Id PK
		string DeviceName
		int ModelId FK
	}
  

①客先情報(Company)

image.png

②設備情報(Model)

image.png

③装置情報(Device)