1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.doumee.core.douyin.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * 「撤销核销」Controller 入参(管理端 platform /business/douyinVerify/cancel)
| *
| * @author rk
| * @date 2026/06/22
| */
| @Data
| @ApiModel("抖音撤销核销入参")
| public class DouyinCancelParam {
|
| @ApiModelProperty(value = "核销记录ID(本地)", required = true)
| private String id;
| }
|
|