doum
10 小时以前 e68e324f91d1a4eb2d4c5f07d27ca105a308bc0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.doumee.dao.web.request;
 
import com.doumee.core.utils.Constants;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/4/13 16:47
 */
@Data
@ApiModel("收藏业务保存请求类")
public class CollectSaveRequest {
 
    @ApiModelProperty(value = "业务主键")
    private Integer objId;
 
    @ApiModelProperty(value = "对象主键")
    private Integer type;
 
}