04_SETM003Controller大架構圖

@startuml
title SETM003Controller大架構圖

package "前端" {
    [User Interface] <<UI>> 
    [API Client] <<Client>>
    [User Interface] --> [API Client] : 發送請求
}

package "後端" {
    [SETM003Controller] <<Controller>> 
    [SETM003Service] <<Service>> 
    [SETM003Dao] <<DAO>>
    [CommonService] <<Service>>

    [API Client] --> [SETM003Controller] : 發送 API 請求
    [SETM003Controller] --> [SETM003Service] : 調用
    [SETM003Service] --> [SETM003Dao] : 調用
    [SETM003Controller] --> [CommonService] : 調用
}

package "數據庫" {
    [Database] <<Database>>
    
    [SETM003Dao] --> [Database] : 查詢
}

@enduml