增加表名

master
wj 2 years ago
parent bee4498fa8
commit c6e75ba278

@ -155,11 +155,11 @@ public class SpsSyncDownloadController {
@AuthRuleAnnotation("")
@GetMapping("sps/sync/data")
@ApiOperation("拉取同步任务数据")
public BaseResponse data(BasicExportTypeEnum exportType) {
public BaseResponse<RelaySyncResponse> data(BasicExportTypeEnum exportType) {
BaseResponse<RelaySyncResponse> baseResponse = new BaseResponse<>();
BasicExportStatusEntity one = basicExportService.getOne(Wrappers.lambdaQuery(BasicExportStatusEntity.class)
.eq(BasicExportStatusEntity::getType, exportType.getRemark())
.orderByDesc(BasicExportStatusEntity::getStartTime)
.orderByAsc(BasicExportStatusEntity::getStartTime)
.last("limit 1")
);
RelaySyncResponse relaySyncResponse = null;
@ -369,6 +369,7 @@ public class SpsSyncDownloadController {
private final ThrInvWarehouseDao thrInvWarehouseDao;
private final ThrProductsDao thrProductsDao;
private final ThrCorpDao thrCorpDao;
private void saveUploadThrData(SpsSyncThrDataResponse bean) {
if (CollectionUtil.isNotEmpty(bean.getDeptEntities())) {

@ -3,6 +3,7 @@ package com.glxp.api.entity.thrsys;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@ -14,6 +15,7 @@ import java.util.Date;
* @since 2023-01-12
*/
@Data
@TableName("thr_corp")
public class ThrCorpEntity{
@TableId(value = "id", type = IdType.AUTO)

@ -1,5 +1,6 @@
package com.glxp.api.entity.thrsys;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@ -8,6 +9,7 @@ import java.util.Date;
*
*/
@Data
@TableName("thr_dept")
public class ThrDeptEntity {
private Integer id;

@ -1,10 +1,13 @@
package com.glxp.api.entity.thrsys;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@Data
@TableName("thr_inv_warehouse")
public class ThrInvWarehouseEntity {
@ -14,6 +17,7 @@ public class ThrInvWarehouseEntity {
private String parentId;
private String remark;
private String thirdSysFk;
@TableField(exist = false)
private String parentName;
private Date updateTime;

Loading…
Cancel
Save