whycxzp
2025-04-29 060775f31a57afe5aad778258e8a9de3114314d3
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.ToString;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
@Data
@ToString
@Alias("Software")
@TableName(schema = "db_battery_gwm",value = "tb_software")
public class Software {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    private String snCode;
 
    private String serialNumber;
 
    private String materialCode;
 
    private String version;
 
    private String description;
 
    private String fileName;
 
    private String fileUrl;
 
    private Integer uploadUserId;
 
    private String uploadUserName;
 
    private Date createTime;
 
    private Integer mailSt;
    private Date sendTime;
 
}