16 lines
430 B
Go
16 lines
430 B
Go
package vclaimsepcontrolletter
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
)
|
|
|
|
type VclaimSepControlLetter struct {
|
|
ecore.Main
|
|
VclaimSep_Number *string `json:"vclaimSep_number"`
|
|
Number *string `json:"number" gorm:"unique;size:20"`
|
|
Value *string `json:"value"`
|
|
FileUrl *string `json:"fileUrl" gorm:"unique;size:1024"`
|
|
|
|
Detail *FullResponse `json:"detail,omitempty" gorm:"-"`
|
|
}
|