14 lines
372 B
Go
14 lines
372 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"`
|
|
}
|