1234567891011121314 |
- package pack
- import (
- "youngee_m_api/model/common_model"
- "youngee_m_api/model/http_model"
- )
- func HttpCreatorListRequestToCondition(req *http_model.CreatorListRequest) *common_model.CreatorListConditions {
- return &common_model.CreatorListConditions{
- Id: req.Id,
- TalentWxNickname: req.TalentWxNickname,
- CreateDate: req.CreateDate,
- }
- }
|