提交 b4a15ccd 编写于 作者: misaka's avatar misaka

delete

上级 c6a959d4
package cn.ibizlab.businesscentral.core.odoo_product.domain;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.math.BigInteger;
import java.util.HashMap;
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.util.ObjectUtils;
import org.springframework.util.DigestUtils;
import cn.ibizlab.businesscentral.util.domain.EntityBase;
import cn.ibizlab.businesscentral.util.annotation.DEField;
import cn.ibizlab.businesscentral.util.enums.DEPredefinedFieldType;
import cn.ibizlab.businesscentral.util.enums.DEFieldDefaultValueType;
import cn.ibizlab.businesscentral.util.helper.DataObject;
import java.io.Serializable;
import lombok.*;
import org.springframework.data.annotation.Transient;
import cn.ibizlab.businesscentral.util.annotation.Audit;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.baomidou.mybatisplus.annotation.*;
import cn.ibizlab.businesscentral.util.domain.EntityMP;
import com.baomidou.mybatisplus.core.toolkit.IdWorker;
/**
* 实体[产品属性]
*/
@Getter
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL",resultMap = "PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELResultMap")
public class PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
/**
* ID
*/
@DEField(isKeyField=true)
@TableField(exist = false)
@JSONField(name = "id")
@JsonProperty("id")
private String id;
/**
* ID
*/
@DEField(name = "product_attribute_value_id")
@TableField(value = "product_attribute_value_id")
@JSONField(name = "product_attribute_value_id")
@JsonProperty("product_attribute_value_id")
private Long productAttributeValueId;
/**
* ID
*/
@DEField(name = "product_template_attribute_line_id")
@TableField(value = "product_template_attribute_line_id")
@JSONField(name = "product_template_attribute_line_id")
@JsonProperty("product_template_attribute_line_id")
private Long productTemplateAttributeLineId;
/**
*
*/
@JsonIgnore
@JSONField(serialize = false)
@TableField(exist = false)
private cn.ibizlab.businesscentral.core.odoo_product.domain.Product_attribute_value odooProductAttributeValue;
/**
*
*/
@JsonIgnore
@JSONField(serialize = false)
@TableField(exist = false)
private cn.ibizlab.businesscentral.core.odoo_product.domain.Product_template_attribute_line odooProductTemplateAttributeLine;
/**
* 设置 [ID]
*/
public void setProductAttributeValueId(Long productAttributeValueId){
this.productAttributeValueId = productAttributeValueId ;
this.modify("product_attribute_value_id",productAttributeValueId);
}
/**
* 设置 [ID]
*/
public void setProductTemplateAttributeLineId(Long productTemplateAttributeLineId){
this.productTemplateAttributeLineId = productTemplateAttributeLineId ;
this.modify("product_template_attribute_line_id",productTemplateAttributeLineId);
}
/**
* 复制当前对象数据到目标对象(粘贴重置)
* @param targetEntity 目标数据对象
* @param bIncEmpty 是否包括空值
* @param <T>
* @return
*/
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("id");
return super.copyTo(targetEntity,bIncEmpty);
}
}
package cn.ibizlab.businesscentral.core.odoo_product.filter;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import lombok.*;
import lombok.extern.slf4j.Slf4j;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.alibaba.fastjson.annotation.JSONField;
import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils;
import cn.ibizlab.businesscentral.util.filter.QueryWrapperContext;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import cn.ibizlab.businesscentral.core.odoo_product.domain.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL;
/**
* 关系型数据实体[PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL] 查询条件对象
*/
@Slf4j
@Data
public class PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext extends QueryWrapperContext<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> {
private String n_id_like;//[ID]
public void setN_id_like(String n_id_like) {
this.n_id_like = n_id_like;
if(!ObjectUtils.isEmpty(this.n_id_like)){
this.getSearchCond().like("id", n_id_like);
}
}
private Long n_product_attribute_value_id_eq;//[ID]
public void setN_product_attribute_value_id_eq(Long n_product_attribute_value_id_eq) {
this.n_product_attribute_value_id_eq = n_product_attribute_value_id_eq;
if(!ObjectUtils.isEmpty(this.n_product_attribute_value_id_eq)){
this.getSearchCond().eq("product_attribute_value_id", n_product_attribute_value_id_eq);
}
}
private Long n_product_template_attribute_line_id_eq;//[ID]
public void setN_product_template_attribute_line_id_eq(Long n_product_template_attribute_line_id_eq) {
this.n_product_template_attribute_line_id_eq = n_product_template_attribute_line_id_eq;
if(!ObjectUtils.isEmpty(this.n_product_template_attribute_line_id_eq)){
this.getSearchCond().eq("product_template_attribute_line_id", n_product_template_attribute_line_id_eq);
}
}
/**
* 启用快速搜索
*/
public void setQuery(String query)
{
this.query=query;
if(!StringUtils.isEmpty(query)){
this.getSearchCond().and( wrapper ->
wrapper.like("id", query)
);
}
}
}
package cn.ibizlab.businesscentral.core.odoo_product.mapper;
import java.util.List;
import org.apache.ibatis.annotations.*;
import java.util.Map;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import java.util.HashMap;
import org.apache.ibatis.annotations.Select;
import cn.ibizlab.businesscentral.core.odoo_product.domain.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL;
import cn.ibizlab.businesscentral.core.odoo_product.filter.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.Cacheable;
import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELMapper extends BaseMapper<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL>{
Page<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> searchDefault(IPage page, @Param("srf") PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext context, @Param("ew") Wrapper<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> wrapper) ;
@Override
PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL selectById(Serializable id);
@Override
int insert(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL entity);
@Override
int updateById(@Param(Constants.ENTITY) PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL entity);
@Override
int update(@Param(Constants.ENTITY) PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL entity, @Param("ew") Wrapper<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
* @param sql
* @return
*/
@Update("${sql}")
boolean updateBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义插入SQL
* @param sql
* @return
*/
@Insert("${sql}")
boolean insertBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义删除SQL
* @param sql
* @return
*/
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> selectByProductAttributeValueId(@Param("id") Serializable id) ;
List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> selectByProductTemplateAttributeLineId(@Param("id") Serializable id) ;
}
package cn.ibizlab.businesscentral.core.odoo_product.service;
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import java.util.Collection;
import java.math.BigInteger;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.scheduling.annotation.Async;
import com.alibaba.fastjson.JSONObject;
import org.springframework.cache.annotation.CacheEvict;
import cn.ibizlab.businesscentral.core.odoo_product.domain.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL;
import cn.ibizlab.businesscentral.core.odoo_product.filter.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 实体[PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL] 服务对象接口
*/
public interface IPRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELService extends IService<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL>{
boolean create(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) ;
void createBatch(List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> list) ;
boolean update(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) ;
void updateBatch(List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> list) ;
boolean remove(String key) ;
void removeBatch(Collection<String> idList) ;
PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL get(String key) ;
PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL getDraft(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) ;
boolean checkKey(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) ;
boolean save(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) ;
void saveBatch(List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> list) ;
Page<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> searchDefault(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext context) ;
List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> selectByProductAttributeValueId(Long id) ;
void removeByProductAttributeValueId(Long id) ;
List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> selectByProductTemplateAttributeLineId(Long id) ;
void removeByProductTemplateAttributeLineId(Long id) ;
/**
*自定义查询SQL
* @param sql select * from table where id =#{et.param}
* @param param 参数列表 param.put("param","1");
* @return select * from table where id = '1'
*/
List<JSONObject> select(String sql, Map param);
/**
*自定义SQL
* @param sql update table set name ='test' where id =#{et.param}
* @param param 参数列表 param.put("param","1");
* @return update table set name ='test' where id = '1'
*/
boolean execute(String sql, Map param);
}
package cn.ibizlab.businesscentral.core.odoo_product.service.impl;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.Map;
import java.util.HashSet;
import java.util.HashMap;
import java.util.Collection;
import java.util.Objects;
import java.util.Optional;
import java.math.BigInteger;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cglib.beans.BeanCopier;
import org.springframework.stereotype.Service;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.Pageable;
import org.springframework.util.ObjectUtils;
import org.springframework.beans.factory.annotation.Value;
import cn.ibizlab.businesscentral.util.errors.BadRequestAlertException;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.context.annotation.Lazy;
import cn.ibizlab.businesscentral.core.odoo_product.domain.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL;
import cn.ibizlab.businesscentral.core.odoo_product.filter.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext;
import cn.ibizlab.businesscentral.core.odoo_product.service.IPRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELService;
import cn.ibizlab.businesscentral.util.helper.CachedBeanCopier;
import cn.ibizlab.businesscentral.util.helper.DEFieldCacheMap;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import cn.ibizlab.businesscentral.core.util.helper.EBSServiceImpl;
import cn.ibizlab.businesscentral.core.odoo_product.mapper.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELMapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.alibaba.fastjson.JSONObject;
import org.springframework.util.StringUtils;
/**
* 实体[产品属性] 服务对象接口实现
*/
@Slf4j
@Service("PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELServiceImpl")
public class PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELServiceImpl extends EBSServiceImpl<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELMapper, PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> implements IPRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELService {
@Autowired
@Lazy
protected cn.ibizlab.businesscentral.core.odoo_product.service.IProduct_attribute_valueService productAttributeValueService;
@Autowired
@Lazy
protected cn.ibizlab.businesscentral.core.odoo_product.service.IProduct_template_attribute_lineService productTemplateAttributeLineService;
protected int batchSize = 500;
public String getIrModel(){
return "product.attribute.value.product.template.attribute.line.rel" ;
}
@Override
@Transactional
public boolean create(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) {
boolean mail_create_nosubscribe = et.get("mail_create_nosubscribe") != null;
boolean mail_create_nolog = et.get("mail_create_nolog") != null;
boolean mail_notrack = et.get("mail_notrack") != null;
if(!this.retBool(this.baseMapper.insert(et)))
return false;
CachedBeanCopier.copy(get(et.getId()),et);
if (!mail_create_nosubscribe && false) {
cn.ibizlab.businesscentral.util.security.SpringContextHolder.getBean(cn.ibizlab.businesscentral.core.extensions.service.Mail_followersExService.class).add_default_followers(this,et);
}
if (!mail_create_nolog && fals) {
cn.ibizlab.businesscentral.util.security.SpringContextHolder.getBean(cn.ibizlab.businesscentral.core.extensions.service.Mail_tracking_valueExService.class).add_default_create_message(this,et);
}
if (!mail_notrack && false) {
}
return true;
}
@Override
@Transactional
public void createBatch(List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> list) {
this.saveBatch(list,batchSize);
}
@Override
@Transactional
public boolean update(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) {
PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL old = new PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL() ;
CachedBeanCopier.copy(get(et.getId()), old);
boolean mail_notrack = et.get("mail_notrack") != null;
if(!update(et,(Wrapper) et.getUpdateWrapper(true).eq("id",et.getId())))
return false;
CachedBeanCopier.copy(get(et.getId()),et);
if (!mail_notrack && false) {
cn.ibizlab.businesscentral.util.security.SpringContextHolder.getBean(cn.ibizlab.businesscentral.core.extensions.service.Mail_tracking_valueExService.class).message_track(this,old,et);
}
return true;
}
@Override
@Transactional
public void updateBatch(List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> list) {
updateBatchById(list,batchSize);
}
@Override
@Transactional
public boolean remove(String key) {
boolean result=removeById(key);
return result ;
}
@Override
@Transactional
public void removeBatch(Collection<String> idList) {
removeByIds(idList);
}
@Override
@Transactional
public PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL get(String key) {
PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et = getById(key);
if(et==null){
et=new PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL();
et.setId(key);
}
else{
}
return et;
}
@Override
public PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL getDraft(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) {
return et;
}
@Override
public boolean checkKey(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) {
return (!ObjectUtils.isEmpty(et.getId()))&&(!Objects.isNull(this.getById(et.getId())));
}
@Override
@Transactional
public boolean save(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) {
if(!saveOrUpdate(et))
return false;
return true;
}
@Override
@Transactional
public boolean saveOrUpdate(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL et) {
if (null == et) {
return false;
} else {
return checkKey(et) ? this.update(et) : this.create(et);
}
}
@Override
@Transactional
public boolean saveBatch(Collection<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> list) {
saveOrUpdateBatch(list,batchSize);
return true;
}
@Override
@Transactional
public void saveBatch(List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> list) {
saveOrUpdateBatch(list,batchSize);
}
@Override
public List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> selectByProductAttributeValueId(Long id) {
return baseMapper.selectByProductAttributeValueId(id);
}
@Override
public void removeByProductAttributeValueId(Long id) {
this.remove(new QueryWrapper<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL>().eq("product_attribute_value_id",id));
}
@Override
public List<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> selectByProductTemplateAttributeLineId(Long id) {
return baseMapper.selectByProductTemplateAttributeLineId(id);
}
@Override
public void removeByProductTemplateAttributeLineId(Long id) {
this.remove(new QueryWrapper<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL>().eq("product_template_attribute_line_id",id));
}
/**
* 查询集合 数据集
*/
@Override
public Page<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> searchDefault(PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext context) {
com.baomidou.mybatisplus.extension.plugins.pagination.Page<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL> pages=baseMapper.searchDefault(context.getPages(),context,context.getSelectCond());
return new PageImpl<PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL>(pages.getRecords(), context.getPageable(), pages.getTotal());
}
@Override
public List<JSONObject> select(String sql, Map param){
return this.baseMapper.selectBySQL(sql,param);
}
@Override
@Transactional
public boolean execute(String sql , Map param){
if (sql == null || sql.isEmpty()) {
return false;
}
if (sql.toLowerCase().trim().startsWith("insert")) {
return this.baseMapper.insertBySQL(sql,param);
}
if (sql.toLowerCase().trim().startsWith("update")) {
return this.baseMapper.updateBySQL(sql,param);
}
if (sql.toLowerCase().trim().startsWith("delete")) {
return this.baseMapper.deleteBySQL(sql,param);
}
log.warn("暂未支持的SQL语法");
return true;
}
}
<?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="cn.ibizlab.businesscentral.core.odoo_product.mapper.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELMapper">
<!--该方法用于重写mybatis中selectById方法,以实现查询逻辑属性-->
<select id="selectById" resultMap="PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELResultMap" databaseId="postgresql">
<![CDATA[select t1.* from (SELECT t1.PRODUCT_ATTRIBUTE_VALUE_ID, t1.PRODUCT_TEMPLATE_ATTRIBUTE_LINE_ID FROM PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL t1 ) t1 where id=#{id}]]>
</select>
<!--通过mybatis将查询结果注入到entity中,通过配置autoMapping="true"由mybatis自动处理映射关系 -->
<resultMap id="PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELResultMap" type="cn.ibizlab.businesscentral.core.odoo_product.domain.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL" autoMapping="true">
<result property="productAttributeValueId" column="product_attribute_value_id" />
<result property="productTemplateAttributeLineId" column="product_template_attribute_line_id" />
<!--通过mybatis自动注入关系属性[主实体],fetchType="lazy"为懒加载配置 -->
<association property="odooProductAttributeValue" javaType="cn.ibizlab.businesscentral.core.odoo_product.domain.Product_attribute_value" column="product_attribute_value_id" select="cn.ibizlab.businesscentral.core.odoo_product.mapper.Product_attribute_valueMapper.selectById" fetchType="lazy"></association>
<!--通过mybatis自动注入关系属性[主实体],fetchType="lazy"为懒加载配置 -->
<association property="odooProductTemplateAttributeLine" javaType="cn.ibizlab.businesscentral.core.odoo_product.domain.Product_template_attribute_line" column="product_template_attribute_line_id" select="cn.ibizlab.businesscentral.core.odoo_product.mapper.Product_template_attribute_lineMapper.selectById" fetchType="lazy"></association>
</resultMap>
<!--关系实体暴露select方法供主实体通过外键查询关系实体数据[实体关系名称:DER1N_PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL_PRODUCT_ATTRIBUTE_VALUE_PRODUCT_ATTRIBUTE_VALUE_ID] -->
<select id="selectByProductAttributeValueId" resultMap="PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELResultMap">
select t1.* from (
<include refid="Default" />
) t1
where product_attribute_value_id=#{id}
</select>
<!--关系实体暴露select方法供主实体通过外键查询关系实体数据[实体关系名称:DER1N_PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_ID] -->
<select id="selectByProductTemplateAttributeLineId" resultMap="PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELResultMap">
select t1.* from (
<include refid="Default" />
) t1
where product_template_attribute_line_id=#{id}
</select>
<!--数据集合[Default]-->
<select id="searchDefault" parameterType="cn.ibizlab.businesscentral.core.odoo_product.filter.PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELSearchContext" resultMap="PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_RELResultMap">
select t1.* from (
<include refid="Default" />
)t1
<where><if test="ew!=null and ew.sqlSegment!=null and !ew.emptyOfWhere">${ew.sqlSegment}</if></where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">${ew.sqlSegment}</if>
</select>
<!--数据查询[Default]-->
<sql id="Default" databaseId="postgresql">
<![CDATA[ SELECT t1.PRODUCT_ATTRIBUTE_VALUE_ID, t1.PRODUCT_TEMPLATE_ATTRIBUTE_LINE_ID FROM PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL t1
]]>
</sql>
<!--数据查询[View]-->
<sql id="View" databaseId="postgresql">
<![CDATA[ SELECT t1.PRODUCT_ATTRIBUTE_VALUE_ID, t1.PRODUCT_TEMPLATE_ATTRIBUTE_LINE_ID FROM PRODUCT_ATTRIBUTE_VALUE_PRODUCT_TEMPLATE_ATTRIBUTE_LINE_REL t1
]]>
</sql>
</mapper>
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册