|
@@ -4,21 +4,28 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.hibernate.annotations.GenericGenerator;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
+import javax.persistence.GeneratedValue;
|
|
|
+import javax.persistence.Id;
|
|
|
|
|
|
@Slf4j
|
|
|
-@EqualsAndHashCode(callSuper = true)
|
|
|
@Data
|
|
|
@Entity(name = "CHUANYUN_OPERATION_INFORMATION")
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
-public class ChuanyunOperationInformationDO extends BasicDO{
|
|
|
+public class ChuanyunOperationInformationDO {
|
|
|
|
|
|
/**
|
|
|
* 表名
|
|
|
*/
|
|
|
public static final String SCHEMA_CODE ="";
|
|
|
|
|
|
+ @Id
|
|
|
+ @GeneratedValue(generator = "idGeneratorChuanyunMemberCost")
|
|
|
+ @GenericGenerator(name ="idGeneratorChuanyunMemberCost" ,strategy="com.galaxis.capsule.util.GalaxisIdGenerator")
|
|
|
+ private String objectId;
|
|
|
+
|
|
|
/**
|
|
|
* 小车编号
|
|
|
*/
|