fix
wangpengfei
2023-07-25 1109d0c6565e3413e54d9f28e68dda8ca26b99c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
}