feat: 器械处方
parent
1f565dc9a9
commit
93851eb11c
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.collect;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.collect.IoSplitFifoInvRel;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface IoSplitFifoInvRelMapper extends BaseMapper<IoSplitFifoInvRel> {
|
||||
}
|
@ -0,0 +1,99 @@
|
||||
package com.glxp.api.entity.collect;
|
||||
|
||||
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 io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 工位库存关联业务类型
|
||||
*/
|
||||
@ApiModel(value="com-glxp-api-entity-collect-IoSplitFifoInvRel")
|
||||
@Data
|
||||
@TableName(value = "udi_wms_ywj.io_split_fifo_inv_rel")
|
||||
public class IoSplitFifoInvRel implements Serializable {
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
@ApiModelProperty(value="")
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 库存ID外键
|
||||
*/
|
||||
@TableField(value = "invIdFk")
|
||||
@ApiModelProperty(value="库存ID外键")
|
||||
private Integer invIdFk;
|
||||
|
||||
/**
|
||||
* 上货工位编码
|
||||
*/
|
||||
@TableField(value = "putWorkCode")
|
||||
@ApiModelProperty(value="上货工位编码")
|
||||
private Long putWorkCode;
|
||||
|
||||
/**
|
||||
* 采集工位编码
|
||||
*/
|
||||
@TableField(value = "collectWorkCode")
|
||||
@ApiModelProperty(value="采集工位编码")
|
||||
private Long collectWorkCode;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
@TableField(value = "busType")
|
||||
@ApiModelProperty(value="业务类型")
|
||||
private String busType;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(value = "updateTime")
|
||||
@ApiModelProperty(value="更新时间")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(value = "createTime")
|
||||
@ApiModelProperty(value="创建时间")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField(value = "createUser")
|
||||
@ApiModelProperty(value="创建人")
|
||||
private String createUser;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@TableField(value = "updateUser")
|
||||
@ApiModelProperty(value="更新人")
|
||||
private String updateUser;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public static final String COL_ID = "id";
|
||||
|
||||
public static final String COL_INVIDFK = "invIdFk";
|
||||
|
||||
public static final String COL_PUTWORKCODE = "putWorkCode";
|
||||
|
||||
public static final String COL_COLLECTWORKCODE = "collectWorkCode";
|
||||
|
||||
public static final String COL_BUSTYPE = "busType";
|
||||
|
||||
public static final String COL_UPDATETIME = "updateTime";
|
||||
|
||||
public static final String COL_CREATETIME = "createTime";
|
||||
|
||||
public static final String COL_CREATEUSER = "createUser";
|
||||
|
||||
public static final String COL_UPDATEUSER = "updateUser";
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.glxp.api.service.thrsys;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.dao.collect.IoSplitFifoInvRelMapper;
|
||||
import com.glxp.api.entity.collect.IoSplitFifoInvRel;
|
||||
@Service
|
||||
public class IoSplitFifoInvRelService extends ServiceImpl<IoSplitFifoInvRelMapper, IoSplitFifoInvRel> {
|
||||
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
<?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.api.dao.collect.IoSplitFifoInvRelMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.collect.IoSplitFifoInvRel">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table udi_wms_ywj.io_split_fifo_inv_rel-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="invIdFk" jdbcType="INTEGER" property="invIdFk" />
|
||||
<result column="putWorkCode" jdbcType="BIGINT" property="putWorkCode" />
|
||||
<result column="collectWorkCode" jdbcType="BIGINT" property="collectWorkCode" />
|
||||
<result column="busType" jdbcType="VARCHAR" property="busType" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
|
||||
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, invIdFk, putWorkCode, collectWorkCode, busType, updateTime, createTime, `createUser`,
|
||||
updateUser
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue