|
@@ -0,0 +1,25 @@
|
|
|
+package com.galaxis.manatee.entity.chuanyun.data.object;
|
|
|
+
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.hibernate.annotations.GenericGenerator;
|
|
|
+
|
|
|
+import javax.persistence.Entity;
|
|
|
+import javax.persistence.GeneratedValue;
|
|
|
+import javax.persistence.Id;
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+@Slf4j
|
|
|
+@Data
|
|
|
+@Entity
|
|
|
+@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
+public class ChuanyunReimbursementAmountDO {
|
|
|
+ @Id
|
|
|
+ @GeneratedValue(generator = "idGeneratorChuanyunMemberCost")
|
|
|
+ @GenericGenerator(name ="idGeneratorChuanyunMemberCost" ,strategy="com.galaxis.capsule.util.GalaxisIdGenerator")
|
|
|
+ private Long objectId;
|
|
|
+
|
|
|
+ private BigDecimal amount;
|
|
|
+}
|