Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.21 KB | None | 0 0
  1. type FilterManageByModule struct {
  2.     Id         string    `filter:"name=ID, ignore"json:"id"form:"id"`
  3.     Moduleid   string    `filter:"name=模块, type=select, column=a.moduleid"json:"moduleid"form:"moduleid"`
  4.     Port       string    `filter:"name=端口, type=input_all"json:"port"form:"port"`
  5.     Black_List string    `filter:"name=黑名单, type=text"json:"black_list"form:"black_list"`
  6.     Alarmid    string    `filter:"name=告警id"json:"alarmid"form:"alarmid"`
  7.     Response   string    `filter:"name=负责人"json:"response"form:"response"`
  8.     Type       string    `filter:"name=端口类型"json:"type"form:"type"`
  9.     Auto       string    `filter:"name=是否开通防火墙, type=select"json:"auto"form:"auto"`
  10.     Detect     string    `filter:"name=是否开启探测, type=select"json:"detect"form:"detect"`
  11.     Downhook   string    `filter:"name=下线回调, autoshow=1"json:"downhook"form:"downhook"`
  12.     Uphook     string    `filter:"name=上线回调, autoshow=1"json:"uphook"form:"uphook"`
  13.     Src        string    `filter:"name=访问源, type=input_lr"json:"src"form:"src"`
  14.     Freq       string    `filter:"name=频率"json:"freq"form:"freq"`
  15.     User       string    `filter:"name=修改人,type=input_like"json:"user"form:"user"`
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement