37 lines
667 B
Java
37 lines
667 B
Java
package com.muyu.system.domain;
|
|
|
|
import com.muyu.common.core.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @Author: wangxinyuan
|
|
* @Date: 2024/9/3 下午12:08
|
|
*/
|
|
|
|
@Data
|
|
public class ConnectorLog {
|
|
|
|
//id
|
|
@Excel(name = "序號")
|
|
private Integer id;
|
|
|
|
//数据名称
|
|
@Excel(name = "數據名稱")
|
|
private String dataName;
|
|
|
|
//金额
|
|
@Excel(name = "金額")
|
|
private Double amount;
|
|
|
|
//消费时间
|
|
@Excel(name = "消費時間")
|
|
// @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private String createTime;
|
|
|
|
private String month;
|
|
|
|
private Double totalAmount;
|
|
|
|
}
|