fix:现场管理设置区分单据类型
parent
df438503c3
commit
8b889ce0c1
@ -0,0 +1,11 @@
|
||||
package com.glxp.api.dao.collect;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.dao.BaseMapperPlus;
|
||||
import com.glxp.api.entity.collect.IoCollectSet;
|
||||
import com.glxp.api.entity.collect.IoCollectSetBustype;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface IoCollectSetBustypeMapper extends BaseMapperPlus<IoCollectSetBustypeMapper, IoCollectSetBustype,IoCollectSetBustype> {
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
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 lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
@ApiModel(value = "io_collect_set_bustype")
|
||||
@Data
|
||||
@TableName(value = "io_collect_set_bustype")
|
||||
public class IoCollectSetBustype implements Serializable {
|
||||
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
@ApiModelProperty(value = "")
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 参数key
|
||||
*/
|
||||
@TableField(value = "setCode")
|
||||
private String setCode;
|
||||
|
||||
/**
|
||||
* 参数value
|
||||
*/
|
||||
@TableField(value = "busType")
|
||||
private String busType;
|
||||
|
||||
@TableField(value = "updateTime")
|
||||
private Date updateTime;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?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.IoCollectSetMapper">
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue