19 lines
560 B
Go
19 lines
560 B
Go
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"`
|
|
}
|