2025-05-06 10:18:24 +08:00

43 lines
811 B
Java

package com.example.demo.entity.TongJi;
import com.example.demo.entity.vo.ZSScoreVo;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class TongJiHeGeLv extends ZSScoreVo {
@JsonProperty("sp_dl")
public String SP_DL;
@JsonProperty("zongjianshu")
public int ZONGJIANSHU;
@JsonProperty("hegejianshu")
public int HEGEJIANSHU;
@JsonProperty("buhegejianshu")
public int BUHEGEJIANSHU;
@JsonProperty("hegelv")
public BigDecimal HEGELV;
@JsonProperty("score")
public BigDecimal score;
@JsonProperty("hj")
public String hj;
@JsonProperty("szqx")
public String szqx;
@JsonProperty("month")
public String month;
@JsonProperty("street")
public String street;
}