|
|
|
@ -5,6 +5,7 @@ import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
@ -34,4 +35,22 @@ public class IfPartCheckCustomerLabelDetail extends BaseBean {
|
|
|
|
|
@Column(name = "CUSTOMER_LABEL")
|
|
|
|
|
@ApiParam("客户标签")
|
|
|
|
|
private String customerLabel;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SYNC_STATUS")
|
|
|
|
|
@ColumnDefault("10")
|
|
|
|
|
@ApiParam("同步状态")
|
|
|
|
|
private Integer syncStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ERROR_MESSAGE")
|
|
|
|
|
@ApiParam("异常消息")
|
|
|
|
|
@Lob
|
|
|
|
|
private String errorMessage;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ACTION_CODE")
|
|
|
|
|
@ApiParam("动作代码")
|
|
|
|
|
private String actionCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IF_CODE")
|
|
|
|
|
@ApiParam("接口代码")
|
|
|
|
|
private String ifCode;
|
|
|
|
|
}
|
|
|
|
|