feige
2024-11-05 72f21494ba48e573e68007eab2296f8c25ecc4b7
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
27
28
29
30
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-15 0:17
 * @Version 1.0.0
 **/
@Data
public class ZRotation implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    private Long uid;
 
    private String url;
 
    private Integer flag;
 
    private Integer choose;
}