设备资质相关操作类
parent
4d6f807791
commit
14254daeb7
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.inv;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.inv.DeviceAssetCertEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface DeviceAssetCertMapper extends BaseMapper<DeviceAssetCertEntity> {
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.api.service.inv;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.entity.inv.DeviceAssetCertEntity;
|
||||
import com.glxp.api.dao.inv.DeviceAssetCertMapper;
|
||||
@Service
|
||||
public class DeviceAssetCertService extends ServiceImpl<DeviceAssetCertMapper, DeviceAssetCertEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
<?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.inv.DeviceAssetCertMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.inv.DeviceAssetCertEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table device_asset_cert-->
|
||||
<id column="id" jdbcType="BIGINT" property="id" />
|
||||
<result column="devCodeFk" jdbcType="VARCHAR" property="devCodeFk" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="code" jdbcType="VARCHAR" property="code" />
|
||||
<result column="filePath" jdbcType="LONGVARCHAR" property="filePath" />
|
||||
<result column="vailDate" jdbcType="TIMESTAMP" property="vailDate" />
|
||||
<result column="expireDate" jdbcType="TIMESTAMP" property="expireDate" />
|
||||
<result column="status" jdbcType="TINYINT" property="status" />
|
||||
<result column="type" jdbcType="TINYINT" property="type" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateUser" jdbcType="TIMESTAMP" property="updateUser" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, devCodeFk, `name`, code, filePath, vailDate, expireDate, `status`, `type`, remark,
|
||||
`createUser`, createTime, updateUser, updateTime
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue