109 lines
3.0 KiB
Java
109 lines
3.0 KiB
Java
/*
|
|
* Copyright 2019-2020 Zheng Jie
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package com.youchain.businessdata.domain;
|
|
|
|
import com.youchain.base.BaseEntity;
|
|
import com.youchain.basicdata.domain.Area;
|
|
import com.youchain.basicdata.domain.Point;
|
|
import com.youchain.modules.system.domain.Dept;
|
|
import com.youchain.utils.BizStatus;
|
|
import lombok.Data;
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import cn.hutool.core.bean.copier.CopyOptions;
|
|
import javax.persistence.*;
|
|
import javax.validation.constraints.*;
|
|
import java.sql.Timestamp;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @website https://eladmin.vip
|
|
* @description /
|
|
* @author houjianlan
|
|
* @date 2024-11-19
|
|
**/
|
|
@Entity
|
|
@Data
|
|
@Table(name="data_count_move")
|
|
public class CountMove extends BaseEntity implements Serializable {
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
@Column(name = "`id`")
|
|
@ApiModelProperty(value = "序号")
|
|
private Long id;
|
|
|
|
@Column(name = "`code`")
|
|
@ApiModelProperty(value = "代码")
|
|
private String code;
|
|
|
|
@Column(name = "`name`")
|
|
@ApiModelProperty(value = "名称")
|
|
private String name;
|
|
|
|
@OneToOne
|
|
@JoinColumn(name = "`src_area_id`")
|
|
@ApiModelProperty(value = "移出库区")
|
|
private Area srcArea;
|
|
|
|
@OneToOne
|
|
@JoinColumn(name = "`dst_area_id`")
|
|
@ApiModelProperty(value = "目标库区")
|
|
private Area dstArea;
|
|
|
|
@OneToOne
|
|
@JoinColumn(name = "`dst_point_id`")
|
|
@ApiModelProperty(value = "目标库位")
|
|
private Point dstPoint;
|
|
|
|
@OneToOne
|
|
@JoinColumn(name = "`dept_id`")
|
|
@ApiModelProperty(value = "仓库ID")
|
|
private Dept dept;
|
|
|
|
@Column(name = "`status`")
|
|
@ApiModelProperty(value = "状态")
|
|
private String status= BizStatus.OPEN;
|
|
|
|
@Column(name = "`type`")
|
|
@ApiModelProperty(value = "类型")
|
|
private String type;
|
|
|
|
@Column(name = "`order_qty`")
|
|
@ApiModelProperty(value = "订单数量")
|
|
private Double orderQty=0d;
|
|
|
|
@Column(name = "`count_qty`")
|
|
@ApiModelProperty(value = "盘点数量")
|
|
private Double countQty=0d;
|
|
|
|
@Column(name = "`remark`")
|
|
@ApiModelProperty(value = "备注")
|
|
private String remark;
|
|
|
|
@Column(name = "`source_name`")
|
|
@ApiModelProperty(value = "来源名称")
|
|
private String sourceName;
|
|
|
|
@Column(name = "`source_id`")
|
|
@ApiModelProperty(value = "来源序号")
|
|
private Long sourceId;
|
|
|
|
public void copy(CountMove source){
|
|
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
|
}
|
|
}
|