sys_auto_history.go 349 B

12345678910111213
  1. package request
  2. import "github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
  3. type SysAutoHistory struct {
  4. request.PageInfo
  5. }
  6. // GetById Find by id structure
  7. type RollBack struct {
  8. ID int `json:"id" form:"id"` // 主键ID
  9. DeleteTable bool `json:"deleteTable" form:"deleteTable"` // 是否删除表
  10. }