Kaynağa Gözat

feat:新增大货订单列表

qingwudarao 6 ay önce
ebeveyn
işleme
6baba048e7

+ 255 - 0
ruoyi-modules/ruoyi-bulkOrder/src/main/java/org/dromara/bulk/domain/bulkOrderList.java

@@ -0,0 +1,255 @@
+package org.dromara.bulk.domain;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import org.dromara.common.tenant.core.TenantEntity;
+
+/**
+* 计划详情
+*/
+@Data
+@EqualsAndHashCode(callSuper = true)
+@TableName("fa_kuyou_plan_info")
+public class bulkOrderList extends TenantEntity {
+
+    /**
+    * id
+    */
+    private Long id;
+
+    /**
+    * 系统单号
+    */
+
+    private String sysNo;
+
+    /**
+    * 生产单号
+    */
+    private String scNo;
+
+    /**
+    * 用户id
+    */
+    private Long userId;
+
+    /**
+    * 计划ID
+    */
+    private Long planId;
+
+    /**
+    * 商品ID
+    */
+    private Long goodsId;
+
+    /**
+    * 商品编号
+    */
+    private String goodsCode;
+
+    /**
+    * 商品名称
+    */
+    private String goodsName;
+
+    /**
+    * 商品规格型号
+    */
+    private String goodsNote;
+
+    /**
+    * 单位ID
+    */
+    private int unitId;
+
+    /**
+    * 默认单位
+    */
+    private Long defaultUnit;
+
+    /**
+    * 进价
+    */
+    private double purchase;
+
+    /**
+    * 数量
+    */
+    private double number;
+
+    /**
+    * 份数
+    */
+    private double fenNumber;
+
+    /**
+    * 基本数量
+    */
+    private double basicNmber;
+
+    /**
+    * 基本份数
+    */
+    private double basicFenNmber;
+
+    /**
+    * 金额
+    */
+    private double money;
+
+    /**
+    * 备注
+    */
+    private String remark;
+
+    /**
+    * 面料id
+    */
+    private String goodsTypeExtend1Id;
+
+    /**
+    * 面料的扩展信息
+    */
+    private String goodsTypeExtend1Attr;
+
+    /**
+    * 物料id
+    */
+    private String goodsTypeExtend2Id;
+
+    /**
+    * 物料的扩展信息
+    */
+    private String goodsTypeExtend2Attr;
+
+    /**
+    * 工艺类型id
+    */
+    private String goodsTypeExtend3Id;
+
+    /**
+    * 工艺类型的扩展信息
+    */
+    private String goodsTypeExtend3Attr;
+
+    /**
+    * 花型号id
+    */
+    private String goodsTypeExtend4Id;
+
+    /**
+    * 花型号的扩展信息
+    */
+    private String goodsTypeExtend4Attr;
+
+    /**
+    * 底布
+    */
+    private String baseCloth;
+
+    /**
+    * 底布单价
+    */
+    private double baseClothPrice;
+
+    /**
+    * 工艺单价
+    */
+    private double gongyiPrice;
+
+    /**
+    * 款号
+    */
+    private String itemNumber;
+
+    /**
+    * 克重
+    */
+    private String weight;
+
+    /**
+    * 门幅
+    */
+    private String menfu;
+
+    /**
+    * 机器
+    */
+    private String machine;
+
+    /**
+    * 品牌组
+    */
+    private String brandGroup;
+
+    /**
+    * 成衣厂
+    */
+    private String garmentFactory;
+
+    /**
+    * 成衣厂联系人
+    */
+    private String garmentFactoryPeople;
+
+    /**
+    * 成衣厂电话
+    */
+    private String garmentFactoryTel;
+
+    /**
+    * 收货地址
+    */
+    private String receivingAddress;
+
+    /**
+    * 当前消耗
+    */
+    private String currentTimeConsumption;
+
+    /**
+    * 下单码数
+    */
+    private String numberOrdersPlaced;
+
+    /**
+    * 下单时间
+    */
+    private String orderTime;
+
+    /**
+    * 交货日期
+    */
+    private String deliveryDate;
+    /**
+    * 目标日期
+    */
+    private String targetDate;
+    /**
+    * 订单id
+    */
+    private Long userOrderId;
+    /**
+    * 销货单id
+    */
+    private Long goodsSalesInfoId;
+    /**
+    * 下单码数类型
+    */
+    private String numberOrdersPlacedType;
+    /**
+    * 发货数量
+    */
+    private int shipNum;
+    /**
+    * 账单备注
+    */
+    private String billRemark;
+    /**
+    * 账单状态
+    */
+    private int duizhangStatus;
+
+}

+ 18 - 0
ruoyi-modules/ruoyi-bulkOrder/src/main/java/org/dromara/bulk/mapper/bulkOrderListMapper.java

@@ -0,0 +1,18 @@
+package org.dromara.bulk.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.dromara.bulk.domain.bulkOrderList;
+
+/**
+* @author kgy
+* @description 针对表【fa_kuyou_plan_info(计划详情)】的数据库操作Mapper
+* @createDate 2025-03-13 15:57:15
+* @Entity org.dromara.bulk.domain.bulkOrderList
+*/
+public interface bulkOrderListMapper extends BaseMapper<bulkOrderList> {
+
+}
+
+
+
+

+ 0 - 4
ruoyi-modules/ruoyi-bulkOrder/src/main/java/org/dromara/bulk/service/BulkOrderManagementService.java

@@ -1,4 +0,0 @@
-package org.dromara.bulk.service;
-
-public interface BulkOrderManagementService {
-}

+ 6 - 0
ruoyi-modules/ruoyi-bulkOrder/src/main/java/org/dromara/bulk/service/bulkOrderListService.java

@@ -0,0 +1,6 @@
+package org.dromara.bulk.service;
+
+
+public interface bulkOrderListService {
+
+}

+ 16 - 0
ruoyi-modules/ruoyi-bulkOrder/src/main/java/org/dromara/bulk/service/impl/bulkOrderListServiceImpl.java

@@ -0,0 +1,16 @@
+package org.dromara.bulk.service.impl;
+
+import lombok.RequiredArgsConstructor;
+import org.dromara.bulk.service.bulkOrderListService;
+import org.springframework.stereotype.Service;
+
+
+@Service
+@RequiredArgsConstructor
+public class bulkOrderListServiceImpl implements bulkOrderListService {
+
+}
+
+
+
+

+ 6 - 0
ruoyi-modules/ruoyi-bulkOrder/src/main/resources/mapper/bulkOrderListMapper.xml

@@ -0,0 +1,6 @@
+<?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.dromara.bulk.mapper.bulkOrderListMapper">
+</mapper>