init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.caliverse.admin.dynamodb.entity;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
public class MailItem {
|
||||
@JsonProperty("itemId")
|
||||
private Integer itemId;
|
||||
@JsonProperty("count")
|
||||
private Integer count;
|
||||
@JsonProperty("productId")
|
||||
private Integer productId;
|
||||
@JsonProperty("isRepeatProduct")
|
||||
private boolean isRepeatProduct;
|
||||
}
|
||||
Reference in New Issue
Block a user