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.

10 lines
259 B

  1. package live_streams
  2. import "practice_Go/internal/model/entity"
  3. type GetListReq struct {
  4. Status *int `v:"in:0,1" dc:"开播状态(0=未开播,1=直播中)"`
  5. }
  6. type GetListRes struct {
  7. List []*entity.LiveStreams `json:"list" dc:"LiveStreams list"`
  8. }