| 12345678910111213141516171819202122232425262728293031 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // BaseItemdetails is the golang structure for table base_itemdetails.
- type BaseItemdetails struct {
- Id int `orm:"Id,primary" json:"id"` //
- DictCode string `orm:"DictCode" json:"dictCode"` // 字典类型
- ParentId int `orm:"ParentId" json:"parentId"` //
- ItemCode string `orm:"ItemCode" json:"itemCode"` //
- ItemName string `orm:"ItemName" json:"itemName"` //
- ItemValue string `orm:"ItemValue" json:"itemValue"` //
- IsDefault string `orm:"IsDefault" json:"isDefault"` // 是否默认(1是 0否)
- Enabled int `orm:"Enabled" json:"enabled"` // 状态(1正常 0停用
- AllowEdit int `orm:"AllowEdit" json:"allowEdit"` //
- AllowDelete int `orm:"AllowDelete" json:"allowDelete"` //
- SortCode int `orm:"SortCode" json:"sortCode"` //
- Description string `orm:"Description" json:"description"` //
- CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
- CreateUserId string `orm:"CreateUserId" json:"createUserId"` //
- CreateBy string `orm:"CreateBy" json:"createBy"` //
- ModifiedOn *gtime.Time `orm:"ModifiedOn" json:"modifiedOn"` //
- ModifiedUserId string `orm:"ModifiedUserId" json:"modifiedUserId"` //
- ModifiedBy string `orm:"ModifiedBy" json:"modifiedBy"` //
- }
|