nickchange
2023-11-22 3ba2d33c27aea91c14bbf34e04e72f3d758a5105
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;
}