Commit 7e6da6ac authored by 赵啸非's avatar 赵啸非

产品表添加所属站点

parent 4c9e8fc9
...@@ -55,10 +55,17 @@ ADD COLUMN `productName` varchar(256) DEFAULT '' COMMENT '产品名称' ...@@ -55,10 +55,17 @@ ADD COLUMN `productName` varchar(256) DEFAULT '' COMMENT '产品名称'
2023-08-17 2023-08-17
-- ---------------------------- -- ----------------------------
ALTER TABLE mortals_xhx_device_module_distribute ADD COLUMN `siteId` bigint(20) COMMENT '站点Id,来源基础服务平台'; ALTER TABLE mortals_xhx_device_module_distribute ADD COLUMN `siteId` bigint(20) default '1' COMMENT '站点Id,来源基础服务平台';
ALTER TABLE mortals_xhx_device_module_distribute ADD COLUMN `siteCode` varchar(256) default '' COMMENT '站点编号,来源基础服务平台'; ALTER TABLE mortals_xhx_device_module_distribute ADD COLUMN `siteCode` varchar(256) default '' COMMENT '站点编号,来源基础服务平台';
ALTER TABLE mortals_xhx_device_module_distribute ADD COLUMN `siteName` varchar(256) default '' COMMENT '站点名称'; ALTER TABLE mortals_xhx_device_module_distribute ADD COLUMN `siteName` varchar(256) default '' COMMENT '站点名称';
ALTER TABLE mortals_xhx_product_version ADD COLUMN `siteId` bigint(20) COMMENT '站点Id,来源基础服务平台'; ALTER TABLE mortals_xhx_product_version ADD COLUMN `siteId` bigint(20) COMMENT '站点Id,来源基础服务平台';
ALTER TABLE mortals_xhx_product_version ADD COLUMN `siteCode` varchar(256) default '' COMMENT '站点编号,来源基础服务平台'; ALTER TABLE mortals_xhx_product_version ADD COLUMN `siteCode` varchar(256) default '' COMMENT '站点编号,来源基础服务平台';
ALTER TABLE mortals_xhx_product_version ADD COLUMN `siteName` varchar(256) default '' COMMENT '站点名称'; ALTER TABLE mortals_xhx_product_version ADD COLUMN `siteName` varchar(256) default '' COMMENT '站点名称';
-- ----------------------------
2023-08-21
-- ----------------------------
ALTER TABLE mortals_xhx_product ADD COLUMN `siteId` bigint(20) COMMENT '站点Id,来源基础服务平台';
ALTER TABLE mortals_xhx_product ADD COLUMN `siteCode` varchar(256) default '' COMMENT '站点编号,来源基础服务平台';
ALTER TABLE mortals_xhx_product ADD COLUMN `siteName` varchar(256) default '' COMMENT '站点名称';
...@@ -106,6 +106,8 @@ public class DeviceModuleDistributeController extends BaseCRUDJsonBodyMappingCon ...@@ -106,6 +106,8 @@ public class DeviceModuleDistributeController extends BaseCRUDJsonBodyMappingCon
@Override @Override
protected int viewAfter(Long id, Map<String, Object> model, DeviceModuleDistributeEntity entity, Context context) throws AppException { protected int viewAfter(Long id, Map<String, Object> model, DeviceModuleDistributeEntity entity, Context context) throws AppException {
String serverName = request.getHeader("server-name"); String serverName = request.getHeader("server-name");
Integer serverPort = DataUtil.converStr2Int(request.getHeader("server-port"),0); Integer serverPort = DataUtil.converStr2Int(request.getHeader("server-port"),0);
......
...@@ -2,13 +2,14 @@ package com.mortals.xhx.module.product.model; ...@@ -2,13 +2,14 @@ package com.mortals.xhx.module.product.model;
import com.mortals.framework.annotation.Excel; import com.mortals.framework.annotation.Excel;
import com.mortals.xhx.module.product.model.vo.ProductVo; import com.mortals.xhx.module.product.model.vo.ProductVo;
import lombok.Data;
/** /**
* 产品实体对象 * 产品实体对象
* *
* @author zxfei * @author zxfei
* @date 2022-11-09 * @date 2023-08-21
*/ */
@Data
public class ProductEntity extends ProductVo { public class ProductEntity extends ProductVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
...@@ -46,126 +47,18 @@ public class ProductEntity extends ProductVo { ...@@ -46,126 +47,18 @@ public class ProductEntity extends ProductVo {
* 备注 * 备注
*/ */
private String productRemark; private String productRemark;
public ProductEntity(){}
/**
* 获取 关联平台
* @return Long
*/
public Long getPlatformId(){
return platformId;
}
/**
* 设置 关联平台
* @param platformId
*/
public void setPlatformId(Long platformId){
this.platformId = platformId;
}
/**
* 获取 产品名称,名称唯一
* @return String
*/
public String getProductName(){
return productName;
}
/**
* 设置 产品名称,名称唯一
* @param productName
*/
public void setProductName(String productName){
this.productName = productName;
}
/**
* 获取 产品编码
* @return String
*/
public String getProductCode(){
return productCode;
}
/**
* 设置 产品编码
* @param productCode
*/
public void setProductCode(String productCode){
this.productCode = productCode;
}
/**
* 获取 皮肤id
* @return Long
*/
public Long getSkinId(){
return skinId;
}
/**
* 设置 皮肤id
* @param skinId
*/
public void setSkinId(Long skinId){
this.skinId = skinId;
}
/**
* 获取 皮肤名称
* @return String
*/
public String getSkinName(){
return skinName;
}
/**
* 设置 皮肤名称
* @param skinName
*/
public void setSkinName(String skinName){
this.skinName = skinName;
}
/** /**
* 获取 首页地址 * 站点Id,来源基础服务平台
* @return String
*/ */
public String getHomeUrl(){ private Long siteId;
return homeUrl;
}
/**
* 设置 首页地址
* @param homeUrl
*/
public void setHomeUrl(String homeUrl){
this.homeUrl = homeUrl;
}
/** /**
* 获取 事件地址,评价器使用 * 站点编号,来源基础服务平台
* @return String
*/ */
public String getEventUrl(){ private String siteCode;
return eventUrl;
}
/**
* 设置 事件地址,评价器使用
* @param eventUrl
*/
public void setEventUrl(String eventUrl){
this.eventUrl = eventUrl;
}
/**
* 获取 备注
* @return String
*/
public String getProductRemark(){
return productRemark;
}
/** /**
* 设置 备注 * 站点名称
* @param productRemark
*/ */
public void setProductRemark(String productRemark){ private String siteName;
this.productRemark = productRemark;
}
@Override @Override
public int hashCode() { public int hashCode() {
return this.getId().hashCode(); return this.getId().hashCode();
...@@ -182,35 +75,17 @@ public class ProductEntity extends ProductVo { ...@@ -182,35 +75,17 @@ public class ProductEntity extends ProductVo {
return false; return false;
} }
public String toString(){
StringBuilder sb = new StringBuilder("");
sb.append(",platformId:").append(getPlatformId());
sb.append(",productName:").append(getProductName());
sb.append(",productCode:").append(getProductCode());
sb.append(",skinId:").append(getSkinId());
sb.append(",skinName:").append(getSkinName());
sb.append(",homeUrl:").append(getHomeUrl());
sb.append(",eventUrl:").append(getEventUrl());
sb.append(",productRemark:").append(getProductRemark());
return sb.toString();
}
public void initAttrValue(){ public void initAttrValue(){
this.platformId = 0L;
this.platformId = null;
this.productName = ""; this.productName = "";
this.productCode = ""; this.productCode = "";
this.skinId = 0L;
this.skinId = null;
this.skinName = ""; this.skinName = "";
this.homeUrl = ""; this.homeUrl = "";
this.eventUrl = ""; this.eventUrl = "";
this.productRemark = ""; this.productRemark = "";
this.siteId = 0L;
this.siteCode = "";
this.siteName = "";
} }
} }
\ No newline at end of file
...@@ -5,7 +5,7 @@ import java.util.List; ...@@ -5,7 +5,7 @@ import java.util.List;
* 产品查询对象 * 产品查询对象
* *
* @author zxfei * @author zxfei
* @date 2022-11-09 * @date 2023-08-21
*/ */
public class ProductQuery extends ProductEntity { public class ProductQuery extends ProductEntity {
/** 开始 主键ID,主键,自增长 */ /** 开始 主键ID,主键,自增长 */
...@@ -20,6 +20,9 @@ public class ProductQuery extends ProductEntity { ...@@ -20,6 +20,9 @@ public class ProductQuery extends ProductEntity {
/** 主键ID,主键,自增长列表 */ /** 主键ID,主键,自增长列表 */
private List <Long> idList; private List <Long> idList;
/** 主键ID,主键,自增长排除列表 */
private List <Long> idNotList;
/** 开始 关联平台 */ /** 开始 关联平台 */
private Long platformIdStart; private Long platformIdStart;
...@@ -32,12 +35,19 @@ public class ProductQuery extends ProductEntity { ...@@ -32,12 +35,19 @@ public class ProductQuery extends ProductEntity {
/** 关联平台列表 */ /** 关联平台列表 */
private List <Long> platformIdList; private List <Long> platformIdList;
/** 关联平台排除列表 */
private List <Long> platformIdNotList;
/** 产品名称,名称唯一 */ /** 产品名称,名称唯一 */
private List<String> productNameList; private List<String> productNameList;
/** 产品名称,名称唯一排除列表 */
private List <String> productNameNotList;
/** 产品编码 */ /** 产品编码 */
private List<String> productCodeList; private List<String> productCodeList;
/** 产品编码排除列表 */
private List <String> productCodeNotList;
/** 开始 皮肤id */ /** 开始 皮肤id */
private Long skinIdStart; private Long skinIdStart;
...@@ -50,18 +60,29 @@ public class ProductQuery extends ProductEntity { ...@@ -50,18 +60,29 @@ public class ProductQuery extends ProductEntity {
/** 皮肤id列表 */ /** 皮肤id列表 */
private List <Long> skinIdList; private List <Long> skinIdList;
/** 皮肤id排除列表 */
private List <Long> skinIdNotList;
/** 皮肤名称 */ /** 皮肤名称 */
private List<String> skinNameList; private List<String> skinNameList;
/** 皮肤名称排除列表 */
private List <String> skinNameNotList;
/** 首页地址 */ /** 首页地址 */
private List<String> homeUrlList; private List<String> homeUrlList;
/** 首页地址排除列表 */
private List <String> homeUrlNotList;
/** 事件地址,评价器使用 */ /** 事件地址,评价器使用 */
private List<String> eventUrlList; private List<String> eventUrlList;
/** 事件地址,评价器使用排除列表 */
private List <String> eventUrlNotList;
/** 备注 */ /** 备注 */
private List<String> productRemarkList; private List<String> productRemarkList;
/** 备注排除列表 */
private List <String> productRemarkNotList;
/** 开始 创建用户 */ /** 开始 创建用户 */
private Long createUserIdStart; private Long createUserIdStart;
...@@ -74,6 +95,9 @@ public class ProductQuery extends ProductEntity { ...@@ -74,6 +95,9 @@ public class ProductQuery extends ProductEntity {
/** 创建用户列表 */ /** 创建用户列表 */
private List <Long> createUserIdList; private List <Long> createUserIdList;
/** 创建用户排除列表 */
private List <Long> createUserIdNotList;
/** 开始 创建时间 */ /** 开始 创建时间 */
private String createTimeStart; private String createTimeStart;
...@@ -92,12 +116,40 @@ public class ProductQuery extends ProductEntity { ...@@ -92,12 +116,40 @@ public class ProductQuery extends ProductEntity {
/** 更新用户列表 */ /** 更新用户列表 */
private List <Long> updateUserIdList; private List <Long> updateUserIdList;
/** 更新用户排除列表 */
private List <Long> updateUserIdNotList;
/** 开始 更新时间 */ /** 开始 更新时间 */
private String updateTimeStart; private String updateTimeStart;
/** 结束 更新时间 */ /** 结束 更新时间 */
private String updateTimeEnd; private String updateTimeEnd;
/** 开始 站点Id,来源基础服务平台 */
private Long siteIdStart;
/** 结束 站点Id,来源基础服务平台 */
private Long siteIdEnd;
/** 增加 站点Id,来源基础服务平台 */
private Long siteIdIncrement;
/** 站点Id,来源基础服务平台列表 */
private List <Long> siteIdList;
/** 站点Id,来源基础服务平台排除列表 */
private List <Long> siteIdNotList;
/** 站点编号,来源基础服务平台 */
private List<String> siteCodeList;
/** 站点编号,来源基础服务平台排除列表 */
private List <String> siteCodeNotList;
/** 站点名称 */
private List<String> siteNameList;
/** 站点名称排除列表 */
private List <String> siteNameNotList;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */ /** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
private List<ProductQuery> orConditionList; private List<ProductQuery> orConditionList;
...@@ -170,6 +222,23 @@ public class ProductQuery extends ProductEntity { ...@@ -170,6 +222,23 @@ public class ProductQuery extends ProductEntity {
this.idList = idList; this.idList = idList;
} }
/**
* 获取 主键ID,主键,自增长
* @return idNotList
*/
public List<Long> getIdNotList(){
return this.idNotList;
}
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public void setIdNotList(List<Long> idNotList){
this.idNotList = idNotList;
}
/** /**
* 获取 开始 关联平台 * 获取 开始 关联平台
* @return platformIdStart * @return platformIdStart
...@@ -234,6 +303,23 @@ public class ProductQuery extends ProductEntity { ...@@ -234,6 +303,23 @@ public class ProductQuery extends ProductEntity {
this.platformIdList = platformIdList; this.platformIdList = platformIdList;
} }
/**
* 获取 关联平台
* @return platformIdNotList
*/
public List<Long> getPlatformIdNotList(){
return this.platformIdNotList;
}
/**
* 设置 关联平台
* @param platformIdNotList
*/
public void setPlatformIdNotList(List<Long> platformIdNotList){
this.platformIdNotList = platformIdNotList;
}
/** /**
* 获取 产品名称,名称唯一 * 获取 产品名称,名称唯一
* @return productNameList * @return productNameList
...@@ -249,6 +335,23 @@ public class ProductQuery extends ProductEntity { ...@@ -249,6 +335,23 @@ public class ProductQuery extends ProductEntity {
public void setProductNameList(List<String> productNameList){ public void setProductNameList(List<String> productNameList){
this.productNameList = productNameList; this.productNameList = productNameList;
} }
/**
* 获取 产品名称,名称唯一
* @return productNameNotList
*/
public List<String> getProductNameNotList(){
return this.productNameNotList;
}
/**
* 设置 产品名称,名称唯一
* @param productNameNotList
*/
public void setProductNameNotList(List<String> productNameNotList){
this.productNameNotList = productNameNotList;
}
/** /**
* 获取 产品编码 * 获取 产品编码
* @return productCodeList * @return productCodeList
...@@ -264,6 +367,23 @@ public class ProductQuery extends ProductEntity { ...@@ -264,6 +367,23 @@ public class ProductQuery extends ProductEntity {
public void setProductCodeList(List<String> productCodeList){ public void setProductCodeList(List<String> productCodeList){
this.productCodeList = productCodeList; this.productCodeList = productCodeList;
} }
/**
* 获取 产品编码
* @return productCodeNotList
*/
public List<String> getProductCodeNotList(){
return this.productCodeNotList;
}
/**
* 设置 产品编码
* @param productCodeNotList
*/
public void setProductCodeNotList(List<String> productCodeNotList){
this.productCodeNotList = productCodeNotList;
}
/** /**
* 获取 开始 皮肤id * 获取 开始 皮肤id
* @return skinIdStart * @return skinIdStart
...@@ -328,6 +448,23 @@ public class ProductQuery extends ProductEntity { ...@@ -328,6 +448,23 @@ public class ProductQuery extends ProductEntity {
this.skinIdList = skinIdList; this.skinIdList = skinIdList;
} }
/**
* 获取 皮肤id
* @return skinIdNotList
*/
public List<Long> getSkinIdNotList(){
return this.skinIdNotList;
}
/**
* 设置 皮肤id
* @param skinIdNotList
*/
public void setSkinIdNotList(List<Long> skinIdNotList){
this.skinIdNotList = skinIdNotList;
}
/** /**
* 获取 皮肤名称 * 获取 皮肤名称
* @return skinNameList * @return skinNameList
...@@ -343,6 +480,23 @@ public class ProductQuery extends ProductEntity { ...@@ -343,6 +480,23 @@ public class ProductQuery extends ProductEntity {
public void setSkinNameList(List<String> skinNameList){ public void setSkinNameList(List<String> skinNameList){
this.skinNameList = skinNameList; this.skinNameList = skinNameList;
} }
/**
* 获取 皮肤名称
* @return skinNameNotList
*/
public List<String> getSkinNameNotList(){
return this.skinNameNotList;
}
/**
* 设置 皮肤名称
* @param skinNameNotList
*/
public void setSkinNameNotList(List<String> skinNameNotList){
this.skinNameNotList = skinNameNotList;
}
/** /**
* 获取 首页地址 * 获取 首页地址
* @return homeUrlList * @return homeUrlList
...@@ -358,6 +512,23 @@ public class ProductQuery extends ProductEntity { ...@@ -358,6 +512,23 @@ public class ProductQuery extends ProductEntity {
public void setHomeUrlList(List<String> homeUrlList){ public void setHomeUrlList(List<String> homeUrlList){
this.homeUrlList = homeUrlList; this.homeUrlList = homeUrlList;
} }
/**
* 获取 首页地址
* @return homeUrlNotList
*/
public List<String> getHomeUrlNotList(){
return this.homeUrlNotList;
}
/**
* 设置 首页地址
* @param homeUrlNotList
*/
public void setHomeUrlNotList(List<String> homeUrlNotList){
this.homeUrlNotList = homeUrlNotList;
}
/** /**
* 获取 事件地址,评价器使用 * 获取 事件地址,评价器使用
* @return eventUrlList * @return eventUrlList
...@@ -373,6 +544,23 @@ public class ProductQuery extends ProductEntity { ...@@ -373,6 +544,23 @@ public class ProductQuery extends ProductEntity {
public void setEventUrlList(List<String> eventUrlList){ public void setEventUrlList(List<String> eventUrlList){
this.eventUrlList = eventUrlList; this.eventUrlList = eventUrlList;
} }
/**
* 获取 事件地址,评价器使用
* @return eventUrlNotList
*/
public List<String> getEventUrlNotList(){
return this.eventUrlNotList;
}
/**
* 设置 事件地址,评价器使用
* @param eventUrlNotList
*/
public void setEventUrlNotList(List<String> eventUrlNotList){
this.eventUrlNotList = eventUrlNotList;
}
/** /**
* 获取 备注 * 获取 备注
* @return productRemarkList * @return productRemarkList
...@@ -388,6 +576,23 @@ public class ProductQuery extends ProductEntity { ...@@ -388,6 +576,23 @@ public class ProductQuery extends ProductEntity {
public void setProductRemarkList(List<String> productRemarkList){ public void setProductRemarkList(List<String> productRemarkList){
this.productRemarkList = productRemarkList; this.productRemarkList = productRemarkList;
} }
/**
* 获取 备注
* @return productRemarkNotList
*/
public List<String> getProductRemarkNotList(){
return this.productRemarkNotList;
}
/**
* 设置 备注
* @param productRemarkNotList
*/
public void setProductRemarkNotList(List<String> productRemarkNotList){
this.productRemarkNotList = productRemarkNotList;
}
/** /**
* 获取 开始 创建用户 * 获取 开始 创建用户
* @return createUserIdStart * @return createUserIdStart
...@@ -452,6 +657,23 @@ public class ProductQuery extends ProductEntity { ...@@ -452,6 +657,23 @@ public class ProductQuery extends ProductEntity {
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
} }
/**
* 获取 创建用户
* @return createUserIdNotList
*/
public List<Long> getCreateUserIdNotList(){
return this.createUserIdNotList;
}
/**
* 设置 创建用户
* @param createUserIdNotList
*/
public void setCreateUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList;
}
/** /**
* 获取 开始 创建时间 * 获取 开始 创建时间
* @return createTimeStart * @return createTimeStart
...@@ -548,6 +770,23 @@ public class ProductQuery extends ProductEntity { ...@@ -548,6 +770,23 @@ public class ProductQuery extends ProductEntity {
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
} }
/**
* 获取 更新用户
* @return updateUserIdNotList
*/
public List<Long> getUpdateUserIdNotList(){
return this.updateUserIdNotList;
}
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList;
}
/** /**
* 获取 开始 更新时间 * 获取 开始 更新时间
* @return updateTimeStart * @return updateTimeStart
...@@ -580,6 +819,151 @@ public class ProductQuery extends ProductEntity { ...@@ -580,6 +819,151 @@ public class ProductQuery extends ProductEntity {
this.updateTimeEnd = updateTimeEnd; this.updateTimeEnd = updateTimeEnd;
} }
/**
* 获取 开始 站点Id,来源基础服务平台
* @return siteIdStart
*/
public Long getSiteIdStart(){
return this.siteIdStart;
}
/**
* 设置 开始 站点Id,来源基础服务平台
* @param siteIdStart
*/
public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
}
/**
* 获取 结束 站点Id,来源基础服务平台
* @return $siteIdEnd
*/
public Long getSiteIdEnd(){
return this.siteIdEnd;
}
/**
* 设置 结束 站点Id,来源基础服务平台
* @param siteIdEnd
*/
public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
}
/**
* 获取 增加 站点Id,来源基础服务平台
* @return siteIdIncrement
*/
public Long getSiteIdIncrement(){
return this.siteIdIncrement;
}
/**
* 设置 增加 站点Id,来源基础服务平台
* @param siteIdIncrement
*/
public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
}
/**
* 获取 站点Id,来源基础服务平台
* @return siteIdList
*/
public List<Long> getSiteIdList(){
return this.siteIdList;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteIdList
*/
public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
}
/**
* 获取 站点Id,来源基础服务平台
* @return siteIdNotList
*/
public List<Long> getSiteIdNotList(){
return this.siteIdNotList;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteIdNotList
*/
public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
}
/**
* 获取 站点编号,来源基础服务平台
* @return siteCodeList
*/
public List<String> getSiteCodeList(){
return this.siteCodeList;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCodeList
*/
public void setSiteCodeList(List<String> siteCodeList){
this.siteCodeList = siteCodeList;
}
/**
* 获取 站点编号,来源基础服务平台
* @return siteCodeNotList
*/
public List<String> getSiteCodeNotList(){
return this.siteCodeNotList;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCodeNotList
*/
public void setSiteCodeNotList(List<String> siteCodeNotList){
this.siteCodeNotList = siteCodeNotList;
}
/**
* 获取 站点名称
* @return siteNameList
*/
public List<String> getSiteNameList(){
return this.siteNameList;
}
/**
* 设置 站点名称
* @param siteNameList
*/
public void setSiteNameList(List<String> siteNameList){
this.siteNameList = siteNameList;
}
/**
* 获取 站点名称
* @return siteNameNotList
*/
public List<String> getSiteNameNotList(){
return this.siteNameNotList;
}
/**
* 设置 站点名称
* @param siteNameNotList
*/
public void setSiteNameNotList(List<String> siteNameNotList){
this.siteNameNotList = siteNameNotList;
}
/** /**
* 设置 主键ID,主键,自增长 * 设置 主键ID,主键,自增长
* @param id * @param id
...@@ -625,6 +1009,15 @@ public class ProductQuery extends ProductEntity { ...@@ -625,6 +1009,15 @@ public class ProductQuery extends ProductEntity {
return this; return this;
} }
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public ProductQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList;
return this;
}
/** /**
* 设置 关联平台 * 设置 关联平台
* @param platformId * @param platformId
...@@ -670,6 +1063,15 @@ public class ProductQuery extends ProductEntity { ...@@ -670,6 +1063,15 @@ public class ProductQuery extends ProductEntity {
return this; return this;
} }
/**
* 设置 关联平台
* @param platformIdNotList
*/
public ProductQuery platformIdNotList(List<Long> platformIdNotList){
this.platformIdNotList = platformIdNotList;
return this;
}
/** /**
* 设置 产品名称,名称唯一 * 设置 产品名称,名称唯一
...@@ -753,6 +1155,15 @@ public class ProductQuery extends ProductEntity { ...@@ -753,6 +1155,15 @@ public class ProductQuery extends ProductEntity {
return this; return this;
} }
/**
* 设置 皮肤id
* @param skinIdNotList
*/
public ProductQuery skinIdNotList(List<Long> skinIdNotList){
this.skinIdNotList = skinIdNotList;
return this;
}
/** /**
* 设置 皮肤名称 * 设置 皮肤名称
...@@ -874,6 +1285,15 @@ public class ProductQuery extends ProductEntity { ...@@ -874,6 +1285,15 @@ public class ProductQuery extends ProductEntity {
return this; return this;
} }
/**
* 设置 创建用户
* @param createUserIdNotList
*/
public ProductQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList;
return this;
}
/** /**
* 设置 更新用户 * 设置 更新用户
...@@ -920,6 +1340,107 @@ public class ProductQuery extends ProductEntity { ...@@ -920,6 +1340,107 @@ public class ProductQuery extends ProductEntity {
return this; return this;
} }
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
public ProductQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList;
return this;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteId
*/
public ProductQuery siteId(Long siteId){
setSiteId(siteId);
return this;
}
/**
* 设置 开始 站点Id,来源基础服务平台
* @param siteIdStart
*/
public ProductQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
}
/**
* 设置 结束 站点Id,来源基础服务平台
* @param siteIdEnd
*/
public ProductQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
return this;
}
/**
* 设置 增加 站点Id,来源基础服务平台
* @param siteIdIncrement
*/
public ProductQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
return this;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteIdList
*/
public ProductQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
return this;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteIdNotList
*/
public ProductQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCode
*/
public ProductQuery siteCode(String siteCode){
setSiteCode(siteCode);
return this;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCodeList
*/
public ProductQuery siteCodeList(List<String> siteCodeList){
this.siteCodeList = siteCodeList;
return this;
}
/**
* 设置 站点名称
* @param siteName
*/
public ProductQuery siteName(String siteName){
setSiteName(siteName);
return this;
}
/**
* 设置 站点名称
* @param siteNameList
*/
public ProductQuery siteNameList(List<String> siteNameList){
this.siteNameList = siteNameList;
return this;
}
/** /**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) * 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment