3 Star 2 Fork 1

fotomxq/weeekj_core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
fields_use.go 1008 Bytes
一键复制 编辑 原始数据 按行查看 历史
fotomxq 提交于 2025-02-05 18:52 +08:00 . 修改项目路径;
package ERPPermanentAssets
import (
CoreSQLConfig "gitee.com/fotomxq/weeekj_core/v5/core/sql/config"
"time"
)
type FieldsUse struct {
//ID
ID int64 `db:"id" json:"id"`
//创建时间
CreateAt time.Time `db:"create_at" json:"createAt"`
//归还时间
ReturnAt time.Time `db:"return_at" json:"returnAt"`
//组织ID
OrgID int64 `db:"org_id" json:"orgID" check:"id" empty:"true"`
//操作人
OrgBindID int64 `db:"org_bind_id" json:"orgBindID"`
//资产ID
ProductID int64 `db:"product_id" json:"productID"`
//实际使用主体(部门)
UseName string `db:"use_name" json:"useName"`
//实际使用人
UseOrgBindID int64 `db:"use_org_bind_id" json:"useOrgBindID"`
//在用数量
Count int64 `db:"count" json:"count"`
//领取数量
TakeCount int64 `db:"take_count" json:"takeCount"`
//归还数量
ReturnCount int64 `db:"return_count" json:"returnCount"`
//描述
Des string `db:"des" json:"des"`
//扩展参数
Params CoreSQLConfig.FieldsConfigsType `db:"params" json:"params"`
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fotomxq/weeekj_core.git
git@gitee.com:fotomxq/weeekj_core.git
fotomxq
weeekj_core
weeekj_core
v5.3.83

搜索帮助