feat: 器械处方

dev_no_inv
chenhc 9 months ago
parent c93e9c68a2
commit 1f565dc9a9

@ -0,0 +1,9 @@
package com.glxp.api.dao.collect;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.collect.SysWorkplacePutRel;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface SysWorkplacePutRelMapper extends BaseMapper<SysWorkplacePutRel> {
}

@ -0,0 +1,108 @@
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-SysWorkplacePutRel")
@Data
@TableName(value = "udi_wms_ywj.sys_workplace_put_rel")
public class SysWorkplacePutRel implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
@ApiModelProperty(value="")
private Integer id;
/**
*
*/
@TableField(value = "workPlaceCode")
@ApiModelProperty(value="上货工位编码")
private String workPlaceCode;
/**
* ID
*/
@TableField(value = "relBusIdFk")
@ApiModelProperty(value="关联业务类型ID")
private Integer relBusIdFk;
/**
*
*/
@TableField(value = "collectWorkCode")
@ApiModelProperty(value="采集工位编码")
private String collectWorkCode;
/**
*
*/
@TableField(value = "collectBusType")
@ApiModelProperty(value="采集工位业务类型")
private String collectBusType;
/**
*
*/
@TableField(value = "createTime")
@ApiModelProperty(value="创建时间")
private Date createTime;
/**
*
*/
@TableField(value = "createUser")
@ApiModelProperty(value="创建人")
private String createUser;
/**
*
*/
@TableField(value = "updateTime")
@ApiModelProperty(value="更新时间")
private Date updateTime;
/**
*
*/
@TableField(value = "updateUser")
@ApiModelProperty(value="更新人")
private String updateUser;
/**
*
*/
@TableField(value = "remark")
@ApiModelProperty(value="备注")
private String remark;
private static final long serialVersionUID = 1L;
public static final String COL_ID = "id";
public static final String COL_WORKPLACECODE = "workPlaceCode";
public static final String COL_RELBUSIDFK = "relBusIdFk";
public static final String COL_COLLECTWORKCODE = "collectWorkCode";
public static final String COL_COLLECTBUSTYPE = "collectBusType";
public static final String COL_CREATETIME = "createTime";
public static final String COL_CREATEUSER = "createUser";
public static final String COL_UPDATETIME = "updateTime";
public static final String COL_UPDATEUSER = "updateUser";
public static final String COL_REMARK = "remark";
}

@ -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.SysWorkplacePutRelMapper;
import com.glxp.api.entity.collect.SysWorkplacePutRel;
@Service
public class SysWorkplacePutRelService extends ServiceImpl<SysWorkplacePutRelMapper, SysWorkplacePutRel> {
}

@ -0,0 +1,23 @@
<?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.SysWorkplacePutRelMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.collect.SysWorkplacePutRel">
<!--@mbg.generated-->
<!--@Table udi_wms_ywj.sys_workplace_put_rel-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="workPlaceCode" jdbcType="VARCHAR" property="workPlaceCode" />
<result column="relBusIdFk" jdbcType="INTEGER" property="relBusIdFk" />
<result column="collectWorkCode" jdbcType="VARCHAR" property="collectWorkCode" />
<result column="collectBusType" jdbcType="VARCHAR" property="collectBusType" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, workPlaceCode, relBusIdFk, collectWorkCode, collectBusType, createTime, `createUser`,
updateTime, updateUser, remark
</sql>
</mapper>
Loading…
Cancel
Save