123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- package main
- import (
- "xiaoniaokuaiyan.com/xiaoniao/entity"
- )
- type RegistParam struct {
- Mobile string `json:"mobile"`
- Password string `json:"password"`
- Vcode string `json:"vcode"`
- }
- type ResetPwdParam struct {
- Mobile string `json:"mobile"`
- Password string `json:"password"`
- NewPassword string `json:"newPassword"`
- }
- type ListOrderParam struct {
- CustomId int `json:"customId"`
- PageIndex int `json:"pageIndex"`
- PageSize int `json:"pageSize"`
- Status int `json:"status"`
- Mobile string `json:"mobile"`
- }
- type SMSParam struct {
- Mobile string `json:"mobile"`
- Type int `json:"type"`
- }
- type VcodeParam struct {
- Mobile string `json:"mobile"`
- Code string `json:"code"`
- CodeType int `json:"code_type"`
- }
- type CouponListParam struct {
- Mobile string `json:"mobile"`
- Status int `json:"status"`
- PageIndex int `json:"pageIndex"`
- PageSize int `json:"pageSize"`
- }
- type DetailOrderParam struct {
- OrderId string `json:"orderId"`
- CustomId int `json:"customId"`
- Type string `json:"type"`
- }
- type PtListParam struct {
- CityId int `json:"cityId"`
- FromDay string `json:"fromDay"`
- PtType int `json:"ptType"`
- KongFuType int `json:"kongFuType"`
- }
- type ExchangeParam struct {
- CodeStr string `json:"codeStr"`
- CustomId int `json:"customId"`
- Mobile string `json:"mobile"`
- }
- type CartParam struct {
- ProductIds []int `json:"pids"`
- CustomId int `json:"cid"`
- }
- type TagParam struct {
- CityId int `json:"cityId"`
- ParentId int `json:"pid"`
- }
- type GetProductParam struct {
- PageSize uint `json:"pageSize"`
- PageIndex uint `json:"pageIndex"`
- Tags []string `json:"tags"`
- CateId int `json:"cateId"`
- CityId int `json:"cityId"`
- }
- type GetProductByCateParam struct {
- PageSize int `json:"page_size"`
- PageIndex int `json:"page_index"`
- CateIds []int `json:"cate_ids"`
- CityId int `json:"city_id"`
- SortBy string `json:"sort_by"`
- SortDir int `json:"sort_dir"`
- }
- type SetOpenidParam struct {
- Mobile string `json:"mobile"`
- Openid string `json:"openid"`
- }
- type GetOrderListParam struct {
- Openid string `json:"openid"`
- Status int `json:"status"`
- PageIndex int `json:"pageIndex"`
- PageSize int `json:"pageSize"`
- }
- type HouseKeepingReportParam struct {
- Name string `json:"name"`
- IdNumber string `json:"id_number"`
- ProductId int `json:"product_id"`
- Mobile string `json:"mobile"`
- VCode string `json:"vcode"`
- }
- type GroupBloodParam struct {
- CustomId int `json:"custom_id"`
- SubjectId int `json:"subject_id"`
- OperType int `json:"oper"`
- Status int `json:"status"`
- }
- type YoukeParam struct {
- Mobile string `json:"mobile"`
- Vcode string `json:"vcode"`
- }
- type JDParam struct {
- Mobile string `json:"mobile"`
- Erp string `json:"erp"`
- IsMarried string `json:"is_married"`
- AddrId int `json:"addr_id"`
- FromDay string `json:"from_day"`
- OperType string `json:"oper_type"`
- Openid string `json:"openid"`
- }
- type NourseExamParam struct {
- Oper string `json:"oper"`
- Type string `json:"type"`
- Questions []entity.ExamQuestion `json:"quetions"`
- DUser *entity.DeliverUser `json:"deliver_user"`
- StudyLog entity.DeliverStudyLog `json:"study_log"`
- OrderId string `json:"order_id"`
- DeliverUserId int `json:"deliver_user_id"`
- City string `json:"city"`
- PageSize int `json:"page_size"`
- PageIndex int `json:"page_index"`
- Workdays []string `json:"workdays"`
- Money int `json:"money"`
- ChatMsg *entity.DeliverChatMsg `json:"chat_msg"`
- Openid string `json:"openid"`
- IsSkip string `json:"is_skip"`
- ProductId int `json:"product_id"` //20221009 护士加项考试传参
- Answers []entity.ProductQuestion `json:"product_answers"` //20221009 护士加项考试传参
- }
- type TopProductParam struct {
- Size int `json:"size"`
- CityId int `json:"city_id"`
- }
- type DictParam struct {
- Class string `json:"class"`
- Ordernum string `json:"ordernum"`
- }
- type ProductCoordinatesParam struct {
- Pid []int `json:"pid"`
- Coordinates string `json:"coordinates"`
- CityId int `json:"city_id"`
- }
- type ProductGuessParam struct {
- CityId int `json:"city_id"`
- Mobile string `json:"mobile"`
- }
|