概述(一级模块)-入库(二级模块)-新建时保存新建单据人信息;验证时保存验证人信息,修改了BUG
1个文件已修改
2 ■■■ 已修改文件
models/operation.go 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
models/operation.go
@@ -59,7 +59,7 @@
        Custodian    string    `json:"custodian" gorm:"type:varchar(255);comment:保管员名称"`
        CreatedBy    string    `json:"createBy" gorm:"type:varchar(255);comment:创建者UserId"`
        CheckedBy    string    `json:"checkedBy" gorm:"type:varchar(255);comment:验证者UserId"`
        CheckedAt    time.Time `json:"checkedAt" gorm:"type:datetime;comment:验证者验证操作时间"`
        CheckedAt    time.Time `json:"checkedAt" gorm:"type:datetime;default:null;comment:验证者验证操作时间"`
    }
    OperationSearch struct {