You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
Java
47 lines
1.3 KiB
Java
2 years ago
|
package com.glxp.api.res.system;
|
||
|
|
||
|
import com.glxp.api.entity.system.SyncDataBustypeEntity;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Data
|
||
|
public class SyncDataSetResponse {
|
||
|
private Integer id;
|
||
|
private boolean typeBus;
|
||
|
private boolean typeScan;
|
||
|
private boolean typeThird;
|
||
|
private boolean basicProducts;
|
||
|
private boolean basicCorp;
|
||
|
private boolean basicInv;
|
||
|
private boolean basicThirdProducts;
|
||
|
private boolean basicThirdCorp;
|
||
|
private boolean basicThirdInv;
|
||
|
private boolean basicThirdBusOrder;
|
||
|
private boolean dbDiProducts;
|
||
|
private boolean downstreamEnable;
|
||
|
private boolean orderScanFinish;
|
||
|
private boolean orderUnReceive;
|
||
|
private boolean orderUnCheck;
|
||
|
private Integer syncTime;
|
||
|
private String syncIp;
|
||
|
private Integer syncDownloadTime; //定时下载时间
|
||
|
private boolean sysUser;
|
||
|
|
||
|
private List<SyncDataBustypeEntity> busTypes;
|
||
|
|
||
|
private String orderSyncStart;
|
||
|
private String basicSyncStart;
|
||
|
private boolean entrustAction;
|
||
|
private Integer orderSyncTime;
|
||
|
private Integer orderSyncDlTime;
|
||
|
private Integer delaySyncTime;
|
||
|
|
||
|
|
||
|
private boolean unCheckCert;
|
||
|
private boolean checkedCert;
|
||
|
private boolean companyCert;
|
||
|
private boolean manufacturerCert;
|
||
|
private boolean productCert;
|
||
|
}
|