sys_auto_history.go 313 B

1234567891011121314
  1. package request
  2. import "log-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. }