44323
2023-11-01 e5ed9472ff4b5bf2f26e5beb6a77af571057b79b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dsh.course.model;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2023/7/31 17:33
 */
@Data
public class EditCourseState {
    /**
     * 数据id
     */
    private Integer id;
    /**
     * 状态(1=上架,2=下架)
     */
    private Integer state;
}