base_itemdetails.go 1.8 KB

12345678910111213141516171819202122232425262728293031
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // BaseItemdetails is the golang structure for table base_itemdetails.
  9. type BaseItemdetails struct {
  10. Id int `orm:"Id,primary" json:"id"` //
  11. DictCode string `orm:"DictCode" json:"dictCode"` // 字典类型
  12. ParentId int `orm:"ParentId" json:"parentId"` //
  13. ItemCode string `orm:"ItemCode" json:"itemCode"` //
  14. ItemName string `orm:"ItemName" json:"itemName"` //
  15. ItemValue string `orm:"ItemValue" json:"itemValue"` //
  16. IsDefault string `orm:"IsDefault" json:"isDefault"` // 是否默认(1是 0否)
  17. Enabled int `orm:"Enabled" json:"enabled"` // 状态(1正常 0停用
  18. AllowEdit int `orm:"AllowEdit" json:"allowEdit"` //
  19. AllowDelete int `orm:"AllowDelete" json:"allowDelete"` //
  20. SortCode int `orm:"SortCode" json:"sortCode"` //
  21. Description string `orm:"Description" json:"description"` //
  22. CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
  23. CreateUserId string `orm:"CreateUserId" json:"createUserId"` //
  24. CreateBy string `orm:"CreateBy" json:"createBy"` //
  25. ModifiedOn *gtime.Time `orm:"ModifiedOn" json:"modifiedOn"` //
  26. ModifiedUserId string `orm:"ModifiedUserId" json:"modifiedUserId"` //
  27. ModifiedBy string `orm:"ModifiedBy" json:"modifiedBy"` //
  28. }