role_entity.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. You may not really want to edit it.
  3. // ==========================================================================
  4. package role
  5. import (
  6. "database/sql"
  7. "github.com/gogf/gf/database/gdb"
  8. )
  9. // Entity is the golang structure for table sys_role.
  10. type Entity struct {
  11. Id int `orm:"id,primary" json:"id"` // 主键
  12. Name string `orm:"name" json:"name"` // 名称/11111/
  13. Status int `orm:"status" json:"status"` // 状态//radio/2,隐藏,1,显示
  14. Sort int `orm:"sort" json:"sort"` // 排序
  15. Remark string `orm:"remark" json:"remark"` // 说明//textarea
  16. Enable int `orm:"enable" json:"enable"` // 是否启用//radio/1,启用,2,禁用
  17. UpdateTime string `orm:"update_time" json:"updateTime"` // 更新时间
  18. UpdateId int `orm:"update_id" json:"updateId"` // 更新人
  19. CreateTime string `orm:"create_time" json:"createTime"` // 创建时间
  20. CreateId int `orm:"create_id" json:"createId"` // 创建者
  21. UpdateName string `json:"updateName,omitempty" gconv:"updateName,omitempty"`
  22. CreateName string `json:"createName,omitempty" gconv:"createName,omitempty"`
  23. }
  24. // OmitEmpty sets OPTION_OMITEMPTY option for the model, which automatically filers
  25. // the data and where attributes for empty values.
  26. func (r *Entity) OmitEmpty() *arModel {
  27. return Model.Data(r).OmitEmpty()
  28. }
  29. // Inserts does "INSERT...INTO..." statement for inserting current object into table.
  30. func (r *Entity) Insert() (result sql.Result, err error) {
  31. return Model.Data(r).Insert()
  32. }
  33. // Replace does "REPLACE...INTO..." statement for inserting current object into table.
  34. // If there's already another same record in the table (it checks using primary key or unique index),
  35. // it deletes it and insert this one.
  36. func (r *Entity) Replace() (result sql.Result, err error) {
  37. return Model.Data(r).Replace()
  38. }
  39. // Save does "INSERT...INTO..." statement for inserting/updating current object into table.
  40. // It updates the record if there's already another same record in the table
  41. // (it checks using primary key or unique index).
  42. func (r *Entity) Save() (result sql.Result, err error) {
  43. return Model.Data(r).Save()
  44. }
  45. // Update does "UPDATE...WHERE..." statement for updating current object from table.
  46. // It updates the record if there's already another same record in the table
  47. // (it checks using primary key or unique index).
  48. func (r *Entity) Update() (result sql.Result, err error) {
  49. return Model.Data(r).Where(gdb.GetWhereConditionOfStruct(r)).Update()
  50. }
  51. // Delete does "DELETE FROM...WHERE..." statement for deleting current object from table.
  52. func (r *Entity) Delete() (result sql.Result, err error) {
  53. return Model.Where(gdb.GetWhereConditionOfStruct(r)).Delete()
  54. }