From 338bdf041a318adea29b726b1c15d32ddf4fdbad Mon Sep 17 00:00:00 2001 From: x_z Date: Wed, 5 Oct 2022 15:07:48 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=8F=90=E4=BA=A4=E5=BB=BA=E5=9E=9B=E8=A7=84?= =?UTF-8?q?=E5=88=99=E7=9B=B8=E5=85=B3=E5=AE=9E=E4=BD=93=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../udi/admin/dao/basic/StockRulesDao.java | 19 ++++ .../admin/entity/basic/StockRulesEntity.java | 107 ++++++++++++++++++ .../mybatis/mapper/basic/StockRulesDao.xml | 46 ++++++++ 3 files changed, 172 insertions(+) create mode 100644 src/main/java/com/glxp/udi/admin/dao/basic/StockRulesDao.java create mode 100644 src/main/java/com/glxp/udi/admin/entity/basic/StockRulesEntity.java create mode 100644 src/main/resources/mybatis/mapper/basic/StockRulesDao.xml diff --git a/src/main/java/com/glxp/udi/admin/dao/basic/StockRulesDao.java b/src/main/java/com/glxp/udi/admin/dao/basic/StockRulesDao.java new file mode 100644 index 0000000..b970a2d --- /dev/null +++ b/src/main/java/com/glxp/udi/admin/dao/basic/StockRulesDao.java @@ -0,0 +1,19 @@ +package com.glxp.udi.admin.dao.basic; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.glxp.udi.admin.entity.basic.StockRulesEntity; +import org.apache.ibatis.annotations.Mapper; + +/** + * 建垛规则表数据接口 + */ +@Mapper +public interface StockRulesDao extends BaseMapper { + + /** + * 自定义更新建垛规则 + * + * @param stockRulesEntity + */ + void updateStockRules(StockRulesEntity stockRulesEntity); +} \ No newline at end of file diff --git a/src/main/java/com/glxp/udi/admin/entity/basic/StockRulesEntity.java b/src/main/java/com/glxp/udi/admin/entity/basic/StockRulesEntity.java new file mode 100644 index 0000000..e84a88a --- /dev/null +++ b/src/main/java/com/glxp/udi/admin/entity/basic/StockRulesEntity.java @@ -0,0 +1,107 @@ +package com.glxp.udi.admin.entity.basic; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.util.Date; + +/** + * 建垛规则表 + */ +@Data +@TableName(value = "stock_rules") +public class StockRulesEntity { + + /** + * id + */ + @NotNull(message = "参数不能为空") + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 建垛规则名称 + */ + @TableField(value = "`name`") + private String name; + + /** + * 客户ID + */ + @TableField(value = "customerId") + private Long customerId; + + /** + * 前缀 + */ + @TableField(value = "`prefix`") + private String prefix; + + /** + * 起始数 + */ + @TableField(value = "startNum") + private String startNum; + + /** + * 步进数 + */ + @TableField(value = "step") + private Integer step; + + /** + * 顺序号 + */ + @TableField(value = "serialNum") + private Integer serialNum; + + /** + * 启用状态:0:禁用,1:启用 + */ + @TableField(value = "status") + private Integer status; + + /** + * 创建时间 + */ + @TableField(value = "createTime") + private Date createTime; + + /** + * 更新时间 + */ + @TableField(value = "updateTime") + private Date updateTime; + + /** + * 备注 + */ + @TableField(value = "remark") + private String remark; + + public static final String COL_ID = "id"; + + public static final String COL_NAME = "name"; + + public static final String COL_CUSTOMERID = "customerId"; + + public static final String COL_PREFIX = "prefix"; + + public static final String COL_STARTNUM = "startNum"; + + public static final String COL_STEP = "step"; + + public static final String COL_SERIALNUM = "serialNum"; + + public static final String COL_STATUS = "status"; + + public static final String COL_CREATETIME = "createTime"; + + public static final String COL_UPDATETIME = "updateTime"; + + public static final String COL_REMARK = "remark"; +} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/basic/StockRulesDao.xml b/src/main/resources/mybatis/mapper/basic/StockRulesDao.xml new file mode 100644 index 0000000..e26b485 --- /dev/null +++ b/src/main/resources/mybatis/mapper/basic/StockRulesDao.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + id, + `name`, + customerId, + `prefix`, + startNum, + step, + serialNum, + stauts, + createTime, + updateTime, + remark + + + + update stock_rules + set name = #{name}, + customerId = #{customerId}, + prefix = #{prefix}, + startNum = #{startNum}, + step = #{step}, + serialNum = #{serialNum}, + `status` = #{status}, + createTime = #{createTime}, + updateTime = #{updateTime}, + remark = #{remark} + where id = #{id} + + \ No newline at end of file