package com.hepl.tunefortwo.entity;

import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;

import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Document("order_summary")
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class OrderSummary {
	@Id
	private String id;
	private double langugaeAmount;
	private double VersionAmount;
	private double masterAmount;
	private double deliverydateAmount;
	private double artistAmount;
	private double totalAmount;
	private LocalDateTime createdAt;
	private LocalDateTime updatedAt;
    
}
