生成接口

This commit is contained in:
JR
2025-07-18 10:12:48 +08:00
parent 31dd4f4f12
commit e7479aec2c
115 changed files with 7371 additions and 7 deletions

View File

@@ -0,0 +1,53 @@
package com.klp.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 出入库单主对象 wms_stock_io
*
* @author Joshi
* @date 2025-07-18
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_stock_io")
public class WmsStockIo extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 出入库单ID
*/
@TableId(value = "stock_io_id")
private Long stockIoId;
/**
* 出入库单号
*/
private String stockIoCode;
/**
* 类型in=入库out=出库)
*/
private String ioType;
/**
* 业务类型(采购、销售、退货、调拨等)
*/
private String bizType;
/**
* 单据状态0=草稿1=已提交2=已审核3=已完成)
*/
private Integer status;
/**
* 备注
*/
private String remark;
/**
* 删除标志0=正常1=已删除)
*/
@TableLogic
private Integer delFlag;
}