package org.jeecg.modules.mes.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description: 物料拉动申请
|
* @Author: jeecg-boot
|
* @Date: 2025-07-04
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("mes_material_transfer_request")
|
@Accessors(chain = true)
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="mes_material_transfer_request对象", description="物料拉动申请")
|
public class MesMaterialTransferRequest implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**主键*/
|
@TableId(type = IdType.ASSIGN_ID)
|
@ApiModelProperty(value = "主键")
|
private String id;
|
/**创建人*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**创建日期*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "创建日期")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新日期*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "更新日期")
|
private Date updateTime;
|
/**删除标记*/
|
@Excel(name = "删除标记", width = 15)
|
@ApiModelProperty(value = "删除标记")
|
@TableLogic
|
private Integer delFlag;
|
/**拉动单号*/
|
@Excel(name = "拉动单号", width = 15)
|
@ApiModelProperty(value = "拉动单号")
|
private String requestCode;
|
/**工单ID*/
|
@Excel(name = "工单ID", width = 15)
|
@ApiModelProperty(value = "工单ID")
|
private String workOrderId;
|
/**SAP预留号*/
|
@Excel(name = "SAP预留号", width = 15)
|
@ApiModelProperty(value = "SAP预留号")
|
private String reservationCode;
|
/**发布状态*/
|
@Excel(name = "发布状态", width = 15, dicCode = "publish_status")
|
@Dict(dicCode = "publish_status")
|
@ApiModelProperty(value = "发布状态")
|
private String publishStatus;
|
/**请求状态*/
|
@Excel(name = "请求状态", width = 15, dicCode = "request_status")
|
@Dict(dicCode = "request_status")
|
@ApiModelProperty(value = "请求状态")
|
private String requestStatus;
|
/**请求时间*/
|
@Excel(name = "请求时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "请求时间")
|
private Date requestTime;
|
/**原库存地*/
|
@Excel(name = "原库存地", width = 15)
|
@ApiModelProperty(value = "原库存地")
|
private String originalWarehouseId;
|
/**目标库存地*/
|
@Excel(name = "目标库存地", width = 15)
|
@ApiModelProperty(value = "目标库存地")
|
private String targetWarehouseId;
|
/**优先级(拉动类型)*/
|
@Excel(name = "优先级(拉动类型)", width = 15, dicCode = "priority")
|
@Dict(dicCode = "priority")
|
@ApiModelProperty(value = "优先级(拉动类型)")
|
private String priority;
|
/**最晚配送时间*/
|
@Excel(name = "最晚配送时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "最晚配送时间")
|
private Date latestDeliveryTime;
|
|
@TableField(exist = false)
|
@ApiModelProperty(value = "工单号")
|
private String workOrderCode;
|
@TableField(exist = false)
|
@ApiModelProperty(value = "目标库存地")
|
private String targetWarehouseName;
|
@TableField(exist = false)
|
@ApiModelProperty(value = "原库存地")
|
private String originalWarehouseName;
|
}
|