add:出库功能2
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package org.nl.wms.stor_manage.io.service.out.iostor;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import org.nl.wms.stor_manage.io.service.in.iostor.dao.StIvtIostorinvIn;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import org.nl.wms.stor_manage.io.service.out.iostor.dao.StIvtIostorinvOut;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 出入库单主表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author generator
|
||||
* @since 2024-03-28
|
||||
*/
|
||||
public interface IStIvtIostorinvOutService extends IService<StIvtIostorinvOut> {
|
||||
|
||||
void save(JSONObject form);
|
||||
|
||||
String dispense(JSONObject form);
|
||||
|
||||
String canceldispense(JSONObject form);
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package org.nl.wms.stor_manage.io.service.out.iostor;
|
||||
|
||||
import org.nl.wms.stor_manage.io.service.in.iostor.dao.StIvtIostorinvIn;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 出入库单主表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author generator
|
||||
* @since 2024-03-28
|
||||
*/
|
||||
public interface IStIvtIostorinvoutService extends IService<StIvtIostorinvIn> {
|
||||
|
||||
}
|
||||
@@ -33,17 +33,13 @@ public class StIvtIostorinvOut implements Serializable {
|
||||
/**
|
||||
* 出入类型
|
||||
*/
|
||||
private Boolean io_type;
|
||||
private Boolean bill_type;
|
||||
|
||||
/**
|
||||
* 业务日期
|
||||
*/
|
||||
private String biz_date;
|
||||
|
||||
/**
|
||||
* 生产区域编码
|
||||
*/
|
||||
private String product_code;
|
||||
private String product_area;
|
||||
|
||||
/**
|
||||
* 单据状态
|
||||
@@ -55,30 +51,26 @@ public class StIvtIostorinvOut implements Serializable {
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 是否删除
|
||||
*/
|
||||
private Boolean is_delete;
|
||||
|
||||
/**
|
||||
* 源单号
|
||||
*/
|
||||
private String source_code;
|
||||
private String source_form_id;
|
||||
|
||||
/**
|
||||
* 源单类型
|
||||
*/
|
||||
private String source_type;
|
||||
private String source_form_type;
|
||||
|
||||
/**
|
||||
* 关联订单
|
||||
* 源单日期
|
||||
*/
|
||||
private String order;
|
||||
private String source_form_date;
|
||||
|
||||
|
||||
/**
|
||||
* 制单人
|
||||
*/
|
||||
private String create_id;
|
||||
private String create_name;
|
||||
|
||||
/**
|
||||
* 制单时间
|
||||
@@ -88,7 +80,7 @@ public class StIvtIostorinvOut implements Serializable {
|
||||
/**
|
||||
* 修改人
|
||||
*/
|
||||
private String update_id;
|
||||
private String update_name;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
Reference in New Issue
Block a user