1.提交建垛规则相关实体类

master
x_z 3 years ago
parent b0fee6307d
commit 338bdf041a

@ -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<StockRulesEntity> {
/**
*
*
* @param stockRulesEntity
*/
void updateStockRules(StockRulesEntity stockRulesEntity);
}

@ -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;
/**
* 01
*/
@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";
}

@ -0,0 +1,46 @@
<?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="com.glxp.udi.admin.dao.basic.StockRulesDao">
<resultMap id="BaseResultMap" type="com.glxp.udi.admin.entity.basic.StockRulesEntity">
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="name" jdbcType="VARCHAR" property="name"/>
<result column="customerId" jdbcType="BIGINT" property="customerId"/>
<result column="prefix" jdbcType="VARCHAR" property="prefix"/>
<result column="startNum" jdbcType="VARCHAR" property="serialNum"/>
<result column="step" jdbcType="INTEGER" property="step"/>
<result column="serialNum" jdbcType="INTEGER" property="serialNum"/>
<result column="stauts" jdbcType="BOOLEAN" property="stauts"/>
<result column="createTime" jdbcType="TIMESTAMP" property="createTime"/>
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
<result column="remark" jdbcType="VARCHAR" property="remark"/>
</resultMap>
<sql id="Base_Column_List">
id,
`name`,
customerId,
`prefix`,
startNum,
step,
serialNum,
stauts,
createTime,
updateTime,
remark
</sql>
<update id="updateStockRules">
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}
</update>
</mapper>
Loading…
Cancel
Save