6 changed files with 189 additions and 54 deletions
@ -0,0 +1,38 @@
|
||||
package com.logpm.factory.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
|
||||
@Data |
||||
@TableName("order_package_status_push_fail_log") |
||||
@ApiModel(value = "老系统推送失败的包件状态", description = "老系统推送失败的包件状态") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class OrderPackageStatusPushFailLogEntity extends BaseEntity { |
||||
|
||||
|
||||
@ApiModelProperty(value = "包件码") |
||||
private String unitNo; |
||||
|
||||
@ApiModelProperty(value = "仓库ID") |
||||
private String warehouseId; |
||||
|
||||
@ApiModelProperty(value = "操作时间") |
||||
private String operationTime; |
||||
|
||||
@ApiModelProperty(value = "托盘ID") |
||||
private Integer trayId; |
||||
|
||||
@ApiModelProperty(value = "包件数据状态1=到货,2=分拣,3=装车,4=卸车,5=出库,6=配送,7=签收,8=滞留,9=备货") |
||||
private String status; |
||||
|
||||
@ApiModelProperty(value = "数据状态 0 待解析 1 解析成功 2 超过执行查询次数") |
||||
private Integer dataStatus; |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,30 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.factory.comfac.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.factory.entity.OrderPackageStatusPushFailLogEntity; |
||||
|
||||
/** |
||||
* 老系统推送包件状态失败的记录表 |
||||
* @author zhy |
||||
* @since 2023-03-28 |
||||
*/ |
||||
public interface OrderPackageStatusPushFailLogMapper extends BaseMapper<OrderPackageStatusPushFailLogEntity> { |
||||
|
||||
|
||||
} |
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.factory.comfac.mapper.OrderPackageStatusPushFailLogMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<!-- <resultMap id="orderLogResultMap" type="com.logpm.factory.snm.entity.FactoryOrder">--> |
||||
<!-- <result column="id" property="id"/>--> |
||||
<!-- <result column="req_args" property="reqArgs"/>--> |
||||
<!-- <result column="res_body" property="resBody"/>--> |
||||
<!-- <result column="type" property="type"/>--> |
||||
<!-- <result column="create_user" property="createUser"/>--> |
||||
<!-- <result column="create_time" property="createTime"/>--> |
||||
<!-- <result column="update_user" property="updateUser"/>--> |
||||
<!-- <result column="update_time" property="updateTime"/>--> |
||||
<!-- <result column="status" property="status"/>--> |
||||
<!-- <result column="is_deleted" property="isDeleted"/>--> |
||||
<!-- <result column="create_dept" property="createDept"/>--> |
||||
<!-- </resultMap>--> |
||||
|
||||
</mapper> |
Loading…
Reference in new issue