9 changed files with 202 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||
|
package org.nl.wms.basedata_manage.service; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
import org.nl.wms.basedata_manage.service.dao.MdPbStoragevehicleext; |
||||
|
|
||||
|
/** |
||||
|
* <p> |
||||
|
* 载具扩展属性信息表 服务类 |
||||
|
* </p> |
||||
|
* |
||||
|
* @author Liuxy |
||||
|
* @since 2025-05-23 |
||||
|
*/ |
||||
|
public interface IMdPbStoragevehicleextService extends IService<MdPbStoragevehicleext> { |
||||
|
|
||||
|
} |
@ -0,0 +1,88 @@ |
|||||
|
package org.nl.wms.basedata_manage.service.dao; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* <p> |
||||
|
* 载具扩展属性信息表 |
||||
|
* </p> |
||||
|
* |
||||
|
* @author Liuxy |
||||
|
* @since 2025-05-23 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper = false) |
||||
|
@TableName("md_pb_storagevehicleext") |
||||
|
public class MdPbStoragevehicleext implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 载具扩展标识 |
||||
|
*/ |
||||
|
@TableId(value = "storagevehicleext_id") |
||||
|
private String storagevehicleext_id; |
||||
|
|
||||
|
/** |
||||
|
* 载具编码 |
||||
|
*/ |
||||
|
private String storagevehicle_code; |
||||
|
|
||||
|
/** |
||||
|
* 物料标识 |
||||
|
*/ |
||||
|
private String material_id; |
||||
|
|
||||
|
/** |
||||
|
* 批次 |
||||
|
*/ |
||||
|
private String pcsn; |
||||
|
|
||||
|
/** |
||||
|
* 数量计量单位标识 |
||||
|
*/ |
||||
|
private String qty_unit_id; |
||||
|
|
||||
|
/** |
||||
|
* 数量计量单位名称 |
||||
|
*/ |
||||
|
private String qty_unit_name; |
||||
|
|
||||
|
/** |
||||
|
* 可用数 |
||||
|
*/ |
||||
|
private BigDecimal canuse_qty; |
||||
|
|
||||
|
/** |
||||
|
* 冻结数 |
||||
|
*/ |
||||
|
private BigDecimal frozen_qty; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
/** |
||||
|
* 修改人 |
||||
|
*/ |
||||
|
private String update_optid; |
||||
|
|
||||
|
/** |
||||
|
* 修改人姓名 |
||||
|
*/ |
||||
|
private String update_optname; |
||||
|
|
||||
|
/** |
||||
|
* 修改时间 |
||||
|
*/ |
||||
|
private String update_time; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
package org.nl.wms.basedata_manage.service.dao.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.nl.wms.basedata_manage.service.dao.MdPbStoragevehicleext; |
||||
|
|
||||
|
/** |
||||
|
* <p> |
||||
|
* 载具扩展属性信息表 Mapper 接口 |
||||
|
* </p> |
||||
|
* |
||||
|
* @author Liuxy |
||||
|
* @since 2025-05-23 |
||||
|
*/ |
||||
|
public interface MdPbStoragevehicleextMapper extends BaseMapper<MdPbStoragevehicleext> { |
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="org.nl.wms.basedata_manage.service.dao.mapper.MdPbStoragevehicleextMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,20 @@ |
|||||
|
package org.nl.wms.basedata_manage.service.impl; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
|
import org.nl.wms.basedata_manage.service.IMdPbStoragevehicleextService; |
||||
|
import org.nl.wms.basedata_manage.service.dao.MdPbStoragevehicleext; |
||||
|
import org.nl.wms.basedata_manage.service.dao.mapper.MdPbStoragevehicleextMapper; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* <p> |
||||
|
* 载具扩展属性信息表 服务实现类 |
||||
|
* </p> |
||||
|
* |
||||
|
* @author Liuxy |
||||
|
* @since 2025-05-23 |
||||
|
*/ |
||||
|
@Service |
||||
|
public class MdPbStoragevehicleextServiceImpl extends ServiceImpl<MdPbStoragevehicleextMapper, MdPbStoragevehicleext> implements IMdPbStoragevehicleextService { |
||||
|
|
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
package org.nl.wms.warehouse_management.service; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
import org.nl.wms.warehouse_management.service.dao.GroupPlate; |
||||
|
|
||||
|
/** |
||||
|
* <p> |
||||
|
* 组盘记录表 服务类 |
||||
|
* </p> |
||||
|
* |
||||
|
* @author Liuxy |
||||
|
* @since 2025-05-23 |
||||
|
*/ |
||||
|
public interface IMdPbGroupplateService extends IService<GroupPlate> { |
||||
|
|
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
package org.nl.wms.warehouse_management.service.dao.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.nl.wms.warehouse_management.service.dao.GroupPlate; |
||||
|
|
||||
|
/** |
||||
|
* <p> |
||||
|
* 组盘记录表 Mapper 接口 |
||||
|
* </p> |
||||
|
* |
||||
|
* @author Liuxy |
||||
|
* @since 2025-05-23 |
||||
|
*/ |
||||
|
public interface MdPbGroupplateMapper extends BaseMapper<GroupPlate> { |
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="org.nl.wms.warehouse_management.service.dao.mapper.MdPbGroupplateMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,20 @@ |
|||||
|
package org.nl.wms.warehouse_management.service.impl; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
|
import org.nl.wms.warehouse_management.service.IMdPbGroupplateService; |
||||
|
import org.nl.wms.warehouse_management.service.dao.GroupPlate; |
||||
|
import org.nl.wms.warehouse_management.service.dao.mapper.MdPbGroupplateMapper; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* <p> |
||||
|
* 组盘记录表 服务实现类 |
||||
|
* </p> |
||||
|
* |
||||
|
* @author Liuxy |
||||
|
* @since 2025-05-23 |
||||
|
*/ |
||||
|
@Service |
||||
|
public class MdPbGroupplateServiceImpl extends ServiceImpl<MdPbGroupplateMapper, GroupPlate> implements IMdPbGroupplateService { |
||||
|
|
||||
|
} |
Loading…
Reference in new issue