zbj//1.单位监测点暂态指标统计_日统计 算法
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
package com.njcn.prepare.harmonic.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDate;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author zbj
|
||||
* @since 2023-06-06
|
||||
*/
|
||||
@Data
|
||||
@TableName("r_stat_event_d")
|
||||
public class RStatEventDPO {
|
||||
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
@MppMultiId(value = "data_date")
|
||||
private LocalDate dataDate;
|
||||
|
||||
@MppMultiId(value = "measurement_type_class")
|
||||
private String measurementTypeClass;
|
||||
|
||||
@MppMultiId(value = "event_type")
|
||||
private String eventType;
|
||||
|
||||
@TableField(value = "event_measurement")
|
||||
private Integer eventMeasurement;
|
||||
|
||||
@TableField(value = "event_measurement_ratio")
|
||||
private Float eventMeasurementRatio;
|
||||
|
||||
@TableField(value = "event_count")
|
||||
private Integer eventCount;
|
||||
|
||||
@MppMultiId(value = "data_type")
|
||||
private String dataType;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user