9 lines
		
	
	
		
			171 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			171 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package response
 | |
| 
 | |
| type Xml struct {
 | |
| 	Code   int         `xml:"code"`
 | |
| 	Data   interface{} `xml:"data"`
 | |
| 	Msg    string      `xml:"msg"`
 | |
| 	Status bool        `xml:"status"`
 | |
| }
 |