Files
bssapp/svc/models/user_list.go
2026-02-11 17:46:22 +03:00

19 lines
592 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package models
// UserListRow — UserList.vue satır modeli (FINAL)
type UserListRow struct {
ID int64 `json:"id"`
Code string `json:"code"`
IsActive bool `json:"is_active"`
// Nebim eşleşmesi (ID yok)
NebimUsername *string `json:"nebim_username,omitempty"`
UserGroupCode *string `json:"user_group_code,omitempty"`
// UIda gösterilecek toplu alanlar
RoleNames string `json:"role_names"` // "ADMIN, USER"
DepartmentNames string `json:"department_names"` // "UST YONETIM, ..."
PiyasaNames string `json:"piyasa_names"` // "AVRUPA, LALELI"
}