| 1234567891011121314 |
- package dto
- import "git.rtzhtech.cn/iss/public-lib/model"
- type GetActInfoReq struct {
- ActId int64 `json:"act_id,omitempty"`
- CpId int64 `json:"cp_id,omitempty"`
- LimitPage
- }
- type GetActInfoResp struct {
- List []*model.DevCpaction `json:"list"`
- Total int64 `json:"total"`
- }
|