phan_cong_nhan_vien_thi_cong
Assigns construction personnel to projects by linking employee IDs with project registration codes, streamlining workforce allocation in construction management systems.
Instructions
Phân công nhân viên thi công
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| maNhanVien | Yes | Mã nhân viên | |
| maddk | Yes | Mã đăng ký |
Input Schema (JSON Schema)
{
"properties": {
"maNhanVien": {
"description": "Mã nhân viên",
"type": "string"
},
"maddk": {
"description": "Mã đăng ký",
"type": "string"
}
},
"required": [
"maddk",
"maNhanVien"
],
"type": "object"
}