You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
916 B

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // Player is the golang structure for table player.
  6. type Player struct {
  7. Id uint `json:"id" ` //
  8. Status uint `json:"status" ` // 状态
  9. From string `json:"from" ` // 编码格式
  10. Name string `json:"name" ` // 名称
  11. Target string `json:"target" ` // 目标窗口
  12. Parse uint `json:"parse" ` // 解析状态
  13. ParseApi string `json:"parse_api" ` // 解析地址
  14. Sort uint `json:"sort" ` // 排序
  15. Tip string `json:"tip" ` // 提示
  16. Filename string `json:"filename" ` // 文件名称
  17. Code string `json:"code" ` // 编码
  18. Remark string `json:"remark" ` // 备注
  19. }