44323
2023-12-12 312cd22230809437aae8462d71d3335e6540f78a
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;
}