mitao
2025-04-01 f6c489c55260a130aa540559f57f6369c0bf54c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dsh.guns.modular.system.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;
}