mirror of
				https://github.com/kongyuebin1/dongfeng-pay.git
				synced 2025-11-04 04:57:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			290 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			290 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package response
 | 
						|
 | 
						|
import "legend/models/legend"
 | 
						|
 | 
						|
type AreaListResp struct {
 | 
						|
	Code  int           `json:"code"`
 | 
						|
	Msg   string        `json:"msg"`
 | 
						|
	Count int           `json:"count"`
 | 
						|
	Data  []legend.Area `json:"data"`
 | 
						|
}
 | 
						|
 | 
						|
type AreaInfoResp struct {
 | 
						|
	Code int
 | 
						|
	Msg  string
 | 
						|
	Area *legend.Area
 | 
						|
}
 |