You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
260 B
21 lines
260 B
package com.qs.test;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @author YenHex
|
|
* @since 2023/2/17
|
|
*/
|
|
@Data
|
|
public class ChartAxisColumn {
|
|
|
|
/** 列Id */
|
|
Long columnId;
|
|
|
|
/** 列名 */
|
|
String columnName;
|
|
|
|
/** 系列坐标值合计 */
|
|
Double total;
|
|
|
|
}
|
|
|