|
|
|
@ -6,16 +6,13 @@ import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Lob;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -29,7 +26,11 @@ import java.io.Serializable;
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Inheritance(strategy = InheritanceType.JOINED)
|
|
|
|
|
@Table(name = "IF_EDI_INITIAL_DATA")
|
|
|
|
|
@Table(name = "IF_EDI_INITIAL_DATA", indexes = {
|
|
|
|
|
@Index(columnList = "PROGRAM_DATA"),
|
|
|
|
|
@Index(columnList = "CONTENT"),
|
|
|
|
|
@Index(columnList = "SYNC_STATUS")
|
|
|
|
|
})
|
|
|
|
|
@Api("EDI_初始数据表")
|
|
|
|
|
public class IfEdiInitialData extends BaseBean implements Serializable {
|
|
|
|
|
private static final long serialVersionUID = -523843818485699827L;
|
|
|
|
|