cmd.Flags().StringP("type","t","","event type, such as \"football\"")
cmd.MarkFlagRequired("type")
cmd.Flags().StringP("subtype","s","","event subtype, such as \"Premier League\"")
cmd.MarkFlagRequired("subtype")
cmd.Flags().StringP("time","m","","time that event result may be shown, such as \"2019-01-21 15:30:00\"")
cmd.MarkFlagRequired("time")
cmd.Flags().StringP("content","c","","event content, such as '{\"team1\":\"ChelSea\", \"team2\":\"Manchester\",\"resultType\":\"score\"}'")
cmd.MarkFlagRequired("content")
cmd.Flags().StringP("introduction","i","","event introduction, such as \"guess the sore result of football game between ChelSea and Manchester in 2019-01-21 14:00:00\"")