(e *subscribe.Subscribe)
| 33 | } |
| 34 | |
| 35 | func FromEntity(e *subscribe.Subscribe) *Subscribe { |
| 36 | return &Subscribe{ |
| 37 | Id: e.UUID, |
| 38 | Service: e.Service, |
| 39 | ApplyStatus: e.ApplyStatus, |
| 40 | Application: e.Application, |
| 41 | Applier: e.Applier, |
| 42 | From: e.From, |
| 43 | CreateAt: e.CreateAt, |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | type CreateApply struct { |
| 48 | Uuid string |
no outgoing calls
no test coverage detected