debut ajout compte joint
This commit is contained in:
18
internal/jointexpense/model.go
Normal file
18
internal/jointexpense/model.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package jointexpense
|
||||
|
||||
import "time"
|
||||
|
||||
type Jointexpense struct {
|
||||
JointexpenseEditable
|
||||
JointaccountId string `json:"jointaccountId,omitempty"`
|
||||
}
|
||||
|
||||
type JointexpenseEditable struct {
|
||||
ID string `json:"id,omitempty"`
|
||||
Value float32 `json:"value"`
|
||||
Libelle string `json:"libelle"`
|
||||
TypeJointexpense string `json:"typeJointexpense"`
|
||||
JointexpenseDate time.Time `json:"jointexpenseDate,omitempty"`
|
||||
CreatedAt *time.Time `json:"createdAt,omitempty"`
|
||||
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user