2023-09-18 12:27:40 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
type ContractInfo struct {
|
2023-10-13 11:48:14 +02:00
|
|
|
BaseModel
|
2023-09-18 12:27:40 +02:00
|
|
|
RawJSON string `json:"raw_json" gorm:"type:json"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ContractInfo) Update() (bool, error) {
|
|
|
|
|
return false, nil
|
|
|
|
|
}
|
|
|
|
|
func (ContractInfo) Create() (bool, error) {
|
|
|
|
|
return false, nil
|
|
|
|
|
}
|
|
|
|
|
func (ContractInfo) Delete() (bool, error) {
|
|
|
|
|
return false, nil
|
|
|
|
|
}
|