()
| 89 | } |
| 90 | |
| 91 | func GetExample3Resp() *example3.ExampleResp { |
| 92 | obj := example3.NewExampleResp() |
| 93 | obj.Code = 1024 |
| 94 | obj.Msg = "中文" |
| 95 | obj.Status = 202 |
| 96 | f := float64(-0.0000001) |
| 97 | obj.Cookie = &f |
| 98 | b := bool(true) |
| 99 | obj.Header = &b |
| 100 | obj.Subfix = 0 |
| 101 | obj.InnerBase = GetInnerBase3() |
| 102 | obj.BaseResp = &base.BaseResp{ |
| 103 | StatusMessage: "a", |
| 104 | StatusCode: 2048, |
| 105 | } |
| 106 | return obj |
| 107 | } |
searching dependent graphs…