package com.doumee.dao.business.model;
|
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import java.util.Date;
|
import java.math.BigDecimal;
|
|
/**
|
* 运维出入库信息表
|
* @author 江蹄蹄
|
* @date 2025/01/06 11:05
|
*/
|
@Data
|
@ApiModel("运维出入库信息表")
|
@TableName("`yw_outinbound`")
|
public class YwOutinbound {
|
|
@TableId(type = IdType.AUTO)
|
@ApiModelProperty(value = "主键", example = "1")
|
@ExcelColumn(name="主键")
|
private Integer id;
|
|
@ApiModelProperty(value = "创建人编码", example = "1")
|
@ExcelColumn(name="创建人编码")
|
private Integer creator;
|
|
@ApiModelProperty(value = "创建时间")
|
@ExcelColumn(name="创建时间")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date createDate;
|
|
@ApiModelProperty(value = "更新人编码", example = "1")
|
@ExcelColumn(name="更新人编码")
|
private Integer editor;
|
|
@ApiModelProperty(value = "更新时间")
|
@ExcelColumn(name="更新时间")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date editDate;
|
|
@ApiModelProperty(value = "是否删除0否 1是", example = "1")
|
@ExcelColumn(name="是否删除0否 1是")
|
private Integer isdeleted;
|
|
@ApiModelProperty(value = "备注")
|
@ExcelColumn(name="备注")
|
private String remark;
|
|
@ApiModelProperty(value = "仓库编码(关联yw_warehouse)")
|
@ExcelColumn(name="仓库编码(关联yw_warehouse)")
|
private String warehouseId;
|
|
@ApiModelProperty(value = "物资编码(关联yw_material)", example = "1")
|
@ExcelColumn(name="物资编码(关联yw_material)")
|
private Integer materialId;
|
|
@ApiModelProperty(value = "数量", example = "1")
|
@ExcelColumn(name="数量")
|
private BigDecimal stock;
|
|
@ApiModelProperty(value = "类型 0采购入库 1领用退回 2库存调整 3其他入库 4盘盈入库 5领用出库 6仓库出库 7调整出库 8采购出库 9其他出库 10盘亏出库", example = "1")
|
@ExcelColumn(name="类型 0采购入库 1领用退回 2库存调整 3其他入库 4盘盈入库 5领用出库 6仓库出库 7调整出库 8采购出库 9其他出库 10盘亏出库")
|
private Integer type;
|
|
@ApiModelProperty(value = "来源 0手动录入 1系统生成", example = "1")
|
@ExcelColumn(name="来源 0手动录入 1系统生成")
|
private Integer origin;
|
|
@ApiModelProperty(value = "说明")
|
@ExcelColumn(name="说明")
|
private String content;
|
|
@ApiModelProperty(value = "出入库日期")
|
@ExcelColumn(name="出入库日期")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date doneDate;
|
|
@ApiModelProperty(value = "状态 0正常", example = "1")
|
@ExcelColumn(name="状态 0正常")
|
private Integer status;
|
|
}
|