feat(iot): 扩展产品分类和设备分组功能
- 在Category实体类中添加parentId和industryCode字段并集成lombok@Data注解 - 在Group实体类中添加parentId和industryCode字段并集成lombok@Data注解 - 更新Category和Group的数据映射文件以支持新字段的数据库操作 - 修改Product查询逻辑以通过左连接获取正确的分类名称 - 在产品创建服务中添加分类名称的自动设置功能 Signed-off-by: Gjm <你的邮箱>
This commit is contained in:
@@ -3,6 +3,7 @@ package iot.lidee.iot.domain;
|
||||
import iot.lidee.common.core.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import iot.lidee.common.annotation.Excel;
|
||||
@@ -14,40 +15,53 @@ import iot.lidee.common.annotation.Excel;
|
||||
* @date 2021-12-16
|
||||
*/
|
||||
@ApiModel(value = "Category", description = "产品分类对象 iot_category")
|
||||
public class Category extends BaseEntity
|
||||
{
|
||||
public class Category extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 产品分类ID */
|
||||
/**
|
||||
* 产品分类ID
|
||||
*/
|
||||
@ApiModelProperty("产品分类ID")
|
||||
private Long categoryId;
|
||||
|
||||
/** 产品分类名称 */
|
||||
/**
|
||||
* 产品分类名称
|
||||
*/
|
||||
@ApiModelProperty("产品分类名称")
|
||||
@Excel(name = "产品分类名称")
|
||||
private String categoryName;
|
||||
|
||||
/** 租户ID */
|
||||
/**
|
||||
* 租户ID
|
||||
*/
|
||||
@ApiModelProperty("租户ID")
|
||||
@Excel(name = "租户ID")
|
||||
private Long tenantId;
|
||||
|
||||
/** 租户名称 */
|
||||
/**
|
||||
* 租户名称
|
||||
*/
|
||||
@ApiModelProperty("租户名称")
|
||||
@Excel(name = "租户名称")
|
||||
private String tenantName;
|
||||
|
||||
/** 是否系统通用(0-否,1-是) */
|
||||
/**
|
||||
* 是否系统通用(0-否,1-是)
|
||||
*/
|
||||
@ApiModelProperty("是否系统通用(0-否,1-是)")
|
||||
@Excel(name = "是否系统通用", readConverterExp = "0=-否,1-是")
|
||||
private Integer isSys;
|
||||
|
||||
/** 显示顺序 */
|
||||
/**
|
||||
* 显示顺序
|
||||
*/
|
||||
@ApiModelProperty("显示顺序")
|
||||
@Excel(name = "显示顺序")
|
||||
private Integer orderNum;
|
||||
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
/**
|
||||
* 删除标志(0代表存在 2代表删除)
|
||||
*/
|
||||
@ApiModelProperty("删除标志(0代表存在 2代表删除)")
|
||||
private String delFlag;
|
||||
|
||||
@@ -60,6 +74,10 @@ public class Category extends BaseEntity
|
||||
@ApiModelProperty("机构ID")
|
||||
private Long deptId;
|
||||
|
||||
private Long parentId;
|
||||
|
||||
private String industryCode;
|
||||
|
||||
public Boolean getShowSenior() {
|
||||
return showSenior;
|
||||
}
|
||||
@@ -84,72 +102,81 @@ public class Category extends BaseEntity
|
||||
isAdmin = admin;
|
||||
}
|
||||
|
||||
public void setCategoryId(Long categoryId)
|
||||
{
|
||||
public void setCategoryId(Long categoryId) {
|
||||
this.categoryId = categoryId;
|
||||
}
|
||||
|
||||
public Long getCategoryId()
|
||||
{
|
||||
public Long getCategoryId() {
|
||||
return categoryId;
|
||||
}
|
||||
public void setCategoryName(String categoryName)
|
||||
{
|
||||
|
||||
public void setCategoryName(String categoryName) {
|
||||
this.categoryName = categoryName;
|
||||
}
|
||||
|
||||
public String getCategoryName()
|
||||
{
|
||||
public String getCategoryName() {
|
||||
return categoryName;
|
||||
}
|
||||
public void setTenantId(Long tenantId)
|
||||
{
|
||||
|
||||
public void setTenantId(Long tenantId) {
|
||||
this.tenantId = tenantId;
|
||||
}
|
||||
|
||||
public Long getTenantId()
|
||||
{
|
||||
public Long getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
public void setTenantName(String tenantName)
|
||||
{
|
||||
|
||||
public void setTenantName(String tenantName) {
|
||||
this.tenantName = tenantName;
|
||||
}
|
||||
|
||||
public String getTenantName()
|
||||
{
|
||||
public String getTenantName() {
|
||||
return tenantName;
|
||||
}
|
||||
public void setIsSys(Integer isSys)
|
||||
{
|
||||
|
||||
public void setIsSys(Integer isSys) {
|
||||
this.isSys = isSys;
|
||||
}
|
||||
public Integer getIsSys()
|
||||
{
|
||||
|
||||
public Integer getIsSys() {
|
||||
return isSys;
|
||||
}
|
||||
|
||||
public void setOrderNum(Integer orderNum)
|
||||
{
|
||||
public void setOrderNum(Integer orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
public Integer getOrderNum()
|
||||
{
|
||||
|
||||
public Integer getOrderNum() {
|
||||
return orderNum;
|
||||
}
|
||||
public void setDelFlag(String delFlag)
|
||||
{
|
||||
|
||||
public void setDelFlag(String delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag()
|
||||
{
|
||||
public String getDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
public Long getParentId() {
|
||||
return parentId;
|
||||
}
|
||||
|
||||
public void setParentId(Long parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getIndustryCode() {
|
||||
return industryCode;
|
||||
}
|
||||
|
||||
public void setIndustryCode(String industryCode) {
|
||||
this.industryCode = industryCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("categoryId", getCategoryId())
|
||||
.append("categoryName", getCategoryName())
|
||||
.append("tenantId", getTenantId())
|
||||
@@ -162,6 +189,8 @@ public class Category extends BaseEntity
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("remark", getRemark())
|
||||
.append("parentId", getParentId())
|
||||
.append("industryCode", getIndustryCode())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ package iot.lidee.iot.domain;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import iot.lidee.common.annotation.Excel;
|
||||
@@ -14,6 +15,7 @@ import iot.lidee.common.core.domain.BaseEntity;
|
||||
* @date 2021-12-16
|
||||
*/
|
||||
@ApiModel(value = "Group", description = "设备分组对象 iot_group")
|
||||
@Data
|
||||
public class Group extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@@ -46,6 +48,11 @@ public class Group extends BaseEntity
|
||||
@ApiModelProperty("删除标志")
|
||||
private String delFlag;
|
||||
|
||||
|
||||
private Long parentId;
|
||||
|
||||
private String industryCode;
|
||||
|
||||
public void setGroupId(Long groupId)
|
||||
{
|
||||
this.groupId = groupId;
|
||||
|
||||
@@ -7,10 +7,7 @@ import iot.lidee.common.core.redis.RedisKeyBuilder;
|
||||
import iot.lidee.common.utils.DateUtils;
|
||||
import iot.lidee.common.utils.StringUtils;
|
||||
import iot.lidee.iot.cache.ITSLCache;
|
||||
import iot.lidee.iot.domain.Device;
|
||||
import iot.lidee.iot.domain.Product;
|
||||
import iot.lidee.iot.domain.ProductModbusJob;
|
||||
import iot.lidee.iot.domain.ProductSubGateway;
|
||||
import iot.lidee.iot.domain.*;
|
||||
import iot.lidee.iot.mapper.*;
|
||||
import iot.lidee.iot.mapper.*;
|
||||
import iot.lidee.iot.model.ChangeProductStatusModel;
|
||||
@@ -60,6 +57,8 @@ public class ProductServiceImpl implements IProductService {
|
||||
private ProductSubGatewayMapper productSubGatewayMapper;
|
||||
@Resource
|
||||
private ProductModbusJobMapper productModbusJobMapper;
|
||||
@Resource
|
||||
private CategoryMapper categoryMapper;
|
||||
|
||||
|
||||
// select cache
|
||||
@@ -253,6 +252,8 @@ public class ProductServiceImpl implements IProductService {
|
||||
}
|
||||
product.setStatus(product.getStatus() == null ? 1 : product.getStatus());
|
||||
product.setCreateTime(DateUtils.getNowDate());
|
||||
Category category = categoryMapper.selectCategoryByCategoryId(product.getCategoryId());
|
||||
product.setCategoryName(category.getCategoryName());
|
||||
productMapper.insertProduct(product);
|
||||
return product;
|
||||
}
|
||||
|
||||
@@ -14,6 +14,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="industryCode" column="industry_code" />
|
||||
<result property="parentId" column="parent_id" />
|
||||
|
||||
</resultMap>
|
||||
|
||||
<resultMap type="iot.lidee.iot.model.IdAndName" id="CategoryShortResult">
|
||||
@@ -22,12 +25,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectCategoryVo">
|
||||
select category_id, category_name, tenant_id, tenant_name, is_sys,order_num, create_time, update_time, remark from iot_category
|
||||
select category_id, category_name, tenant_id, tenant_name, is_sys,order_num, create_time, update_time, remark, parent_id, industry_code from iot_category
|
||||
</sql>
|
||||
|
||||
<select id="selectCategoryList" parameterType="iot.lidee.iot.domain.Category" resultMap="CategoryResult">
|
||||
select c.category_id, c.category_name, c.tenant_id, c.tenant_name,
|
||||
c.is_sys,c.order_num, c.create_time, c.update_time, c.remark
|
||||
c.is_sys,c.order_num, c.create_time, c.update_time, c.remark,c.parent_id,c.industry_code
|
||||
from iot_category c
|
||||
<where>
|
||||
<if test="deptId != null and showSenior and !isAdmin">
|
||||
@@ -98,6 +101,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="parentId != null">parent_id,</if>
|
||||
<if test="industryCode != null">industry_code,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="categoryName != null and categoryName != ''">#{categoryName},</if>
|
||||
@@ -110,6 +115,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="parentId != null">#{parentId},</if>
|
||||
<if test="industryCode != null">#{industryCode},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
@@ -126,6 +133,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="parentId != null">parent_id = #{parentId},</if>
|
||||
<if test="industryCode != null">industry_code = #{industryCode},</if>
|
||||
</trim>
|
||||
where category_id = #{categoryId}
|
||||
</update>
|
||||
|
||||
@@ -13,6 +13,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="industryCode" column="industry_code" />
|
||||
<result property="parentId" column="parent_id" />
|
||||
</resultMap>
|
||||
|
||||
<resultMap type="iot.lidee.iot.model.IdOutput" id="IdsResult">
|
||||
@@ -20,7 +22,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectGroupVo">
|
||||
select group_id, group_name, group_order, user_id, user_name, create_time, update_time, remark from iot_group
|
||||
select group_id, group_name, group_order, user_id, user_name, create_time, update_time, remark, industry_code, parent_id from iot_group
|
||||
</sql>
|
||||
|
||||
<select id="selectGroupList" parameterType="iot.lidee.iot.domain.Group" resultMap="GroupResult">
|
||||
@@ -55,6 +57,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="parentId != null">parent_id,</if>
|
||||
<if test="industryCode != null">industry_code,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="groupName != null and groupName != ''">#{groupName},</if>
|
||||
@@ -67,6 +71,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="parentId != null">#{parentId},</if>
|
||||
<if test="industryCode != null">#{industryCode},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
@@ -93,6 +99,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="parentId != null">parent_id = #{parentId},</if>
|
||||
<if test="industryCode != null">industry_code = #{industryCode},</if>
|
||||
</trim>
|
||||
where group_id = #{groupId}
|
||||
</update>
|
||||
|
||||
@@ -42,7 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectProductList" parameterType="iot.lidee.iot.domain.Product" resultMap="ProductResult">
|
||||
select p.product_id, p.product_name,p.protocol_code,p.transport, p.category_id,
|
||||
p.category_name, p.tenant_id, p.tenant_name, p.is_sys, p.is_authorize,
|
||||
c.category_name, p.tenant_id, p.tenant_name, p.is_sys, p.is_authorize,
|
||||
p.mqtt_account,p.mqtt_password,p.mqtt_secret ,p.status,p.device_type,
|
||||
p.network_method, p.vertificate_method, p.create_time, p.update_time,
|
||||
p.img_url,p.remark,p.guid,
|
||||
@@ -50,7 +50,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
when (select count(product_id) from iot_product where p.tenant_id = #{tenantId}) > 0 then 1
|
||||
else 0
|
||||
end as is_owner,
|
||||
p.location_way from iot_product p
|
||||
p.location_way from iot_product p left join iot_category c on p.category_id=c.category_id
|
||||
<where>
|
||||
<if test="deptId != null and showSenior and !isAdmin">
|
||||
and ( p.tenant_id = #{tenantId}
|
||||
@@ -71,7 +71,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
and p.tenant_id = #{tenantId}
|
||||
</if>
|
||||
<if test="productName != null and productName != ''"> and p.product_name like concat('%', #{productName}, '%')</if>
|
||||
<if test="categoryName != null and categoryName != ''"> and p.category_name like concat('%', #{categoryName}, '%')</if>
|
||||
<if test="categoryName != null and categoryName != ''">and c.category_name like concat('%',
|
||||
#{categoryName}, '%')
|
||||
</if>
|
||||
<if test="status != null "> and p.status = #{status}</if>
|
||||
<if test="deviceType != null "> and device_type = #{deviceType}</if>
|
||||
</where>
|
||||
@@ -298,7 +300,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectTerminalUserProduct" resultType="iot.lidee.iot.domain.Product">
|
||||
select distinct p.product_id, p.product_name,p.protocol_code,p.transport, p.category_id,
|
||||
p.category_name, p.tenant_id, p.tenant_name, p.is_sys, p.is_authorize,
|
||||
c.category_name, p.tenant_id, p.tenant_name, p.is_sys, p.is_authorize,
|
||||
p.mqtt_account,p.mqtt_password,p.mqtt_secret ,p.status,p.device_type,
|
||||
p.network_method, p.vertificate_method, p.create_time, p.update_time,
|
||||
p.img_url,p.remark
|
||||
@@ -313,6 +315,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
) as u
|
||||
inner join iot_device d on u.device_id = d.device_id
|
||||
inner join iot_product p on d.product_id = p.product_id
|
||||
left join iot_category c on p.category_id=c.category_id
|
||||
<where>
|
||||
<if test="productName != null and productName != ''">
|
||||
and p.product_name = #{productName}
|
||||
|
||||
Reference in New Issue
Block a user