|
@@ -2,7 +2,9 @@ package com.galaxis.manatee.entity.chuanyun.data.object;
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
import lombok.Data;
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.hibernate.annotations.GenericGenerator;
|
|
|
|
|
@@ -14,12 +16,14 @@ import java.math.BigDecimal;
|
|
|
@Slf4j
|
|
|
@Data
|
|
|
@Entity
|
|
|
+@NoArgsConstructor
|
|
|
+@AllArgsConstructor
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
public class ChuanyunReimbursementAmountDO {
|
|
|
@Id
|
|
|
- @GeneratedValue(generator = "idGeneratorChuanyunMemberCost")
|
|
|
- @GenericGenerator(name ="idGeneratorChuanyunMemberCost" ,strategy="com.galaxis.capsule.util.GalaxisIdGenerator")
|
|
|
- private Long objectId;
|
|
|
+// @GeneratedValue(generator = "idGeneratorChuanyunReimbursementAmount")
|
|
|
+// @GenericGenerator(name ="idGeneratorChuanyunReimbursementAmount" ,strategy="com.galaxis.capsule.util.GalaxisIdGenerator")
|
|
|
+ private String objectId;
|
|
|
|
|
|
- private BigDecimal amount;
|
|
|
+ private BigDecimal totalAmount;
|
|
|
}
|