owner.go 178 B

123456789101112
  1. package response
  2. import "wails-app/internal/dao"
  3. type Owner struct {
  4. dao.Owner
  5. }
  6. type OwnerList struct {
  7. Total int64 `json:"total"`
  8. List []dao.Owner `json:"list"`
  9. }