|
|
|
@ -12,6 +12,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description:
|
|
|
|
@ -79,6 +80,18 @@ public class MesPcnSyncCfg extends BaseBean {
|
|
|
|
|
@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;
|
|
|
|
|
}
|
|
|
|
|