|
|
|
@ -1,10 +1,14 @@ |
|
|
|
package com.thing.eq.eqby.entity; |
|
|
|
|
|
|
|
import com.mybatisflex.annotation.Id; |
|
|
|
import com.mybatisflex.annotation.KeyType; |
|
|
|
import com.mybatisflex.annotation.Table; |
|
|
|
import com.mybatisflex.core.keygen.KeyGenerators; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
|
|
|
import java.io.Serial; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
@ -16,10 +20,12 @@ import java.util.Date; |
|
|
|
@Data |
|
|
|
@EqualsAndHashCode(callSuper=false) |
|
|
|
@Table("eq_by_template_detail") |
|
|
|
public class EqByTemplateDetailEntity { |
|
|
|
public class EqByTemplateDetailEntity implements Serializable { |
|
|
|
|
|
|
|
@Serial |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
@Id |
|
|
|
@Id(keyType = KeyType.Generator,value = KeyGenerators.snowFlakeId) |
|
|
|
private Long id; |
|
|
|
/** |
|
|
|
* 保养模板id |
|
|
|
|