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.
|
|
|
package com.glxp.api.entity.system;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrOrderUploadBustypesEntity;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
@Data
|
|
|
|
public class SyncUploadDataSetEntity {
|
|
|
|
|
|
|
|
private Integer id;
|
|
|
|
private boolean autoUpload;
|
|
|
|
private Integer orderSyncTime;
|
|
|
|
private boolean orderUnCheck;
|
|
|
|
private boolean orderUnReceive;
|
|
|
|
private boolean orderScanFinish;
|
|
|
|
|
|
|
|
|
|
|
|
private boolean checkUdims;
|
|
|
|
private boolean checkPdaEd;
|
|
|
|
private boolean checkPdaUn;
|
|
|
|
private boolean checkPc;
|
|
|
|
private boolean checkWebNew;
|
|
|
|
private boolean checkChange;
|
|
|
|
private boolean checkSp;
|
|
|
|
private boolean checkBalacne;
|
|
|
|
|
|
|
|
private String orderStartTime;
|
|
|
|
|
|
|
|
private List<ThrOrderUploadBustypesEntity> busTypes;
|
|
|
|
}
|