package request
|
|
type AddContract struct {
|
Contract
|
}
|
|
type Contract struct {
|
ClientId int `json:"client_id"`
|
MemberId int `json:"member_id"`
|
Number string `json:"number"`
|
QuotationId int `json:"quotation_id"`
|
StatusId int `json:"status_id"`
|
File string `json:"file"`
|
}
|
|
type UpdateContract struct {
|
Id int `json:"id"`
|
Contract
|
}
|
|
type GetContractList struct {
|
PageInfo
|
Keyword string `json:"keyword"`
|
}
|