|  | @@ -11,20 +11,21 @@ import (
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  type Contracts struct {
 | 
	
		
			
				|  |  | -	Id            string `form:"id" json:"id" `
 | 
	
		
			
				|  |  | -	TreeId        string `form:"treeId" json:"treeId" `
 | 
	
		
			
				|  |  | -	ContractsType int    `form:"contractsType" json:"contractsType" `
 | 
	
		
			
				|  |  | -	ProjectId     string `form:"projectId" json:"projectId" `
 | 
	
		
			
				|  |  | -	BidsectionId  string `form:"bidsectionId" json:"bidsectionId" `
 | 
	
		
			
				|  |  | -	Name          string `form:"name" json:"name" `
 | 
	
		
			
				|  |  | -	Code          string `form:"code" json:"code" `
 | 
	
		
			
				|  |  | -	Price         string `form:"price" json:"price" `
 | 
	
		
			
				|  |  | -	Returned      string `form:"returned" json:"returned" `
 | 
	
		
			
				|  |  | -	Paid          string `form:"paid" json:"paid" `
 | 
	
		
			
				|  |  | -	Status        int    `form:"status" json:"status" `
 | 
	
		
			
				|  |  | -	Locking       int    `form:"locking" json:"locking" `
 | 
	
		
			
				|  |  | -	CreateTime    string `form:"createTime" json:"createTime" `
 | 
	
		
			
				|  |  | -	UpdateTime    string `form:"updateTime" json:"updateTime" `
 | 
	
		
			
				|  |  | +	Id            string  `form:"id" json:"id" `
 | 
	
		
			
				|  |  | +	TreeId        string  `form:"treeId" json:"treeId" `
 | 
	
		
			
				|  |  | +	ContractsType int     `form:"contractsType" json:"contractsType" `
 | 
	
		
			
				|  |  | +	ProjectId     string  `form:"projectId" json:"projectId" `
 | 
	
		
			
				|  |  | +	BidsectionId  string  `form:"bidsectionId" json:"bidsectionId" `
 | 
	
		
			
				|  |  | +	Name          string  `form:"name" json:"name" `
 | 
	
		
			
				|  |  | +	Code          string  `form:"code" json:"code" `
 | 
	
		
			
				|  |  | +	PriceFloat    float64 `form:"priceFloat" json:"priceFloat" `
 | 
	
		
			
				|  |  | +	Price         string  `form:"price" json:"price" `
 | 
	
		
			
				|  |  | +	Returned      string  `form:"returned" json:"returned" `
 | 
	
		
			
				|  |  | +	Paid          string  `form:"paid" json:"paid" `
 | 
	
		
			
				|  |  | +	Status        int     `form:"status" json:"status" `
 | 
	
		
			
				|  |  | +	Locking       int     `form:"locking" json:"locking" `
 | 
	
		
			
				|  |  | +	CreateTime    string  `form:"createTime" json:"createTime" `
 | 
	
		
			
				|  |  | +	UpdateTime    string  `form:"updateTime" json:"updateTime" `
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	Content      string `form:"content" json:"content" `
 | 
	
		
			
				|  |  |  	PartyA       string `form:"partyA" json:"partyA" `
 |