debut ajout compte joint

This commit is contained in:
2022-05-13 01:38:03 +02:00
parent cc6aa27d5d
commit 19a642b4d4
14 changed files with 785 additions and 1 deletions

View 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"`
}