lxw
2023-08-15 160e150009b51a39fa95d9462c3798ba28d51a09
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "tb_badbatt_mon_flag对象", description = "")
@TableName(schema = "web_site", value = "tb_badbatt_mon_flag")
public class BadbattMonFlag {
    @TableId(type = IdType.AUTO)
    private Integer num;
    private Integer count;
}