github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/internal/pkg/domain/comm.go (about)

     1  package domain
     2  
     3  // Response
     4  type Response struct {
     5  	Code int64       `json:"code"`
     6  	Msg  string      `json:"msg"`
     7  	Data interface{} `json:"data"`
     8  }
     9  
    10  type BizError struct {
    11  	Code int64
    12  	Msg  string
    13  }