|
|
|
@ -77,6 +77,26 @@ public class PtlPcnSyncCfg extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam(value = "从数据库抽取的条件限制")
|
|
|
|
|
private String extractCondition;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_IGNORE_ORG")
|
|
|
|
|
@ApiParam(value = "同步的时候是否区分工厂")
|
|
|
|
|
private Integer isIgnoreOrg = CommonEnumUtil.TRUE_OR_FALSE.FALSE.getValue();
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("同步方式")
|
|
|
|
|
private String syncPatternName;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("同步类型名称")
|
|
|
|
|
private String syncTypeName;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "同步的时候是否区分工厂")
|
|
|
|
|
private String isIgnoreOrgName;
|
|
|
|
|
|
|
|
|
|
public int getIsIgnoreOrgVal() {
|
|
|
|
|
return this.isIgnoreOrg == null ? 0 : this.isIgnoreOrg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getSyncFrequencyVal() {
|
|
|
|
|
return this.syncFrequency == null ? 0 : this.syncFrequency;
|
|
|
|
|
}
|
|
|
|
|