切换mysql为达梦数据库-代码审查

1.userboot模块
This commit is contained in:
2024-09-20 15:03:05 +08:00
parent 24b4f08d2a
commit e3c147b41b
42 changed files with 190 additions and 597 deletions

View File

@@ -1,36 +0,0 @@
package com.njcn.device.pq.pojo.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
/**
* @version 1.0.0
* @author: zbj
* @date: 2023/04/10
*/
@Data
public class UserScaleVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 月份
*/
@ApiModelProperty("月份")
private String timeId;
/**
* 累计增量
*/
@ApiModelProperty("累计增量")
private Integer incrementNum;
/**
* 当月增量
*/
@ApiModelProperty("当月增量")
private Integer monthIncrementNum;
}