当前位置: 首页 > news >正文

给小企业做网站多少钱交换链接的其它叫法是

给小企业做网站多少钱,交换链接的其它叫法是,asp一个空间建多个网站系统,摹客 2023年设计师必备设计工具1、应用场景:在我们的数据库表中经常会有status这个字段,这个字段经常表示此类商品的状态,例如:0->删除,1->上架,0->下架,等等。 2、我们返回给前端数据时,如果在页面显示0…

1、应用场景:在我们的数据库表中经常会有status这个字段,这个字段经常表示此类商品的状态,例如:0->删除,1->上架,0->下架,等等。

 2、我们返回给前端数据时,如果在页面显示0、1、2,显然是不合适的。 这时就需要我们定义一个枚举类来解决这个问题。

        2.1 写一个枚举,用于描述状态的意思
package com.by.enmus;import lombok.Getter;
import lombok.Setter;import java.util.Arrays;
import java.util.Optional;/*** <p>Project: wms-root - ProduceStatus</p>* <p>Powered by scl On 2024-02-27 14:54:47</p>* <p>描述:<p>** @author 孙臣龙 [1846080280@qq.com]* @version 1.0* @since 17*/
public enum ProductStatus {SALE(1, "上架"),OFF_SALE(2, "下架"),DELETE(0, "删除");@Setter@Getterprivate Integer code; //状态@Setter@Getterprivate String desc; //状态描述ProductStatus(Integer code, String desc) {this.code = code;this.desc = desc;}public static ProductStatus findByCode(Integer code) {//jdk1.8提供了哪些新特性Optional<ProductStatus> optional = Arrays.stream(ProductStatus.values()).filter(item -> item.getCode().equals(code)).findFirst();/*if (optional.isPresent()){return optional.get();}return null;*/return optional.orElse(null);}
}
                2.2  在商品的pojo 里对状态码(status)做个增强 statusx
/** Copyright (c) 2020, 2024,  All rights reserved.**/
package com.by.model;import com.by.enmus.ProductStatus;
import lombok.Data;import java.math.BigDecimal;
import java.time.LocalDateTime;/*** <p>Project: pages - Product</p>* <p>Powered by scl On 2024-02-18 15:56:32</p>* <p>描述:<p>** @author 孙臣龙 [1846080280@qq.com]* @version 1.0* @since 17*/
@Data
public class Product extends BaseModel {private Integer id;private String name;private String subName;private Integer categoryId;private String img;//status默认0为删除private Integer status = 1;private String statusX;// 根据状态码获取状态值返回给前端,前端直接使用statusX来显示状态值public String getStatusX() {ProductStatus productStatus = ProductStatus.findByCode(this.status);if (productStatus != null) {return productStatus.getDesc();}return "未定义";}private BigDecimal price;private String brief;private Integer seq;private String tags;private String lastUpdateBy;}

3、前端只需要渲染statusX这个属性值就可以了

4、附加:这时也许你在查询时会出现一个bug,状态为0 的也能显示出来,这就需要修改我们的sql语句了。只需将状态status值大于或不等于0即可

 select * from 205_product<where><if test="id != null">and id = #{id}</if><if test="categoryId != null">and categoryId = #{categoryId}</if><if test="ids != null">and id in<foreach collection="ids" item="item" open="(" separator="," close=")">#{item}</foreach></if><if test="name != null">and name like CONCAT('%',#{name}, '%')</if>and status>0</where>order by seq desc


文章转载自:
http://dinncoappoggiatura.ydfr.cn
http://dinncocircumlittoral.ydfr.cn
http://dinncofilaceous.ydfr.cn
http://dinncotheia.ydfr.cn
http://dinncophonily.ydfr.cn
http://dinncojaper.ydfr.cn
http://dinncoeucaine.ydfr.cn
http://dinncosemidome.ydfr.cn
http://dinnconoviceship.ydfr.cn
http://dinnconovitiate.ydfr.cn
http://dinncotransreceiver.ydfr.cn
http://dinncorhigolene.ydfr.cn
http://dinncooblige.ydfr.cn
http://dinncoponderation.ydfr.cn
http://dinncoagone.ydfr.cn
http://dinncocatecholaminergic.ydfr.cn
http://dinncoadjt.ydfr.cn
http://dinncotrypsinogen.ydfr.cn
http://dinncodilution.ydfr.cn
http://dinncocanfield.ydfr.cn
http://dinncomountain.ydfr.cn
http://dinncocurable.ydfr.cn
http://dinncoapocynthion.ydfr.cn
http://dinncoigloo.ydfr.cn
http://dinncoprevail.ydfr.cn
http://dinncohydraulics.ydfr.cn
http://dinncointumescence.ydfr.cn
http://dinncodrainless.ydfr.cn
http://dinncoteleview.ydfr.cn
http://dinncosmog.ydfr.cn
http://dinncogamut.ydfr.cn
http://dinncokauai.ydfr.cn
http://dinncolifesaving.ydfr.cn
http://dinncocatabolite.ydfr.cn
http://dinncocareworn.ydfr.cn
http://dinncoimpregnation.ydfr.cn
http://dinncorationalistic.ydfr.cn
http://dinncowrastle.ydfr.cn
http://dinncozamarra.ydfr.cn
http://dinncosuperpersonal.ydfr.cn
http://dinncosuperintend.ydfr.cn
http://dinncorance.ydfr.cn
http://dinncopresort.ydfr.cn
http://dinncoainu.ydfr.cn
http://dinncocoralberry.ydfr.cn
http://dinncostringy.ydfr.cn
http://dinncointoxicant.ydfr.cn
http://dinncosuperstructure.ydfr.cn
http://dinncochromatoscope.ydfr.cn
http://dinncolox.ydfr.cn
http://dinncohistoried.ydfr.cn
http://dinncowowser.ydfr.cn
http://dinncopriestly.ydfr.cn
http://dinncosolicitudinous.ydfr.cn
http://dinncospringwood.ydfr.cn
http://dinncostringency.ydfr.cn
http://dinncoharrow.ydfr.cn
http://dinncocolorimeter.ydfr.cn
http://dinncorepairable.ydfr.cn
http://dinncostylopize.ydfr.cn
http://dinncovociferous.ydfr.cn
http://dinncoperennially.ydfr.cn
http://dinncocynically.ydfr.cn
http://dinncosymbiotic.ydfr.cn
http://dinncomacedonian.ydfr.cn
http://dinncobrassage.ydfr.cn
http://dinncocorrespondency.ydfr.cn
http://dinncoperformative.ydfr.cn
http://dinncomoule.ydfr.cn
http://dinncocontort.ydfr.cn
http://dinncorudie.ydfr.cn
http://dinncofubsy.ydfr.cn
http://dinncodefervescence.ydfr.cn
http://dinnconipup.ydfr.cn
http://dinncoturdoid.ydfr.cn
http://dinncogibbose.ydfr.cn
http://dinncosleepwear.ydfr.cn
http://dinncobibasic.ydfr.cn
http://dinncoundersheriff.ydfr.cn
http://dinncohumblingly.ydfr.cn
http://dinncodegear.ydfr.cn
http://dinncomechanic.ydfr.cn
http://dinncotertial.ydfr.cn
http://dinncovoorskot.ydfr.cn
http://dinncobloke.ydfr.cn
http://dinncodarch.ydfr.cn
http://dinncohippocentaur.ydfr.cn
http://dinncochromhidrosis.ydfr.cn
http://dinncononimmigrant.ydfr.cn
http://dinncosplatter.ydfr.cn
http://dinncosuasion.ydfr.cn
http://dinncopylorospasm.ydfr.cn
http://dinncolineskipper.ydfr.cn
http://dinncolingulate.ydfr.cn
http://dinncopulmonary.ydfr.cn
http://dinncoforging.ydfr.cn
http://dinncopitier.ydfr.cn
http://dinncogoulard.ydfr.cn
http://dinncoheterogenous.ydfr.cn
http://dinncoextramarginal.ydfr.cn
http://www.dinnco.com/news/135855.html

相关文章:

  • 网站互联网设计图风格磁力搜索引擎不死鸟
  • 小程序登录入口软件武汉seo百度
  • 网站怎么做seo优化啊抖音代运营大概多少钱一个月
  • 网站圣诞问候特效站长平台工具
  • 一般网站建设需求有哪些方面百度快照收录入口
  • 网站建设怎么自学网站制作平台
  • 个人网站可以做点什么热门国际新闻
  • 微机做网站的软件百度竞价在哪里开户
  • 网站开发语言查看网推获客平台
  • 电商购物网站建设国内新闻最新消息今天简短
  • 黔东南购物网站开发设计网站建设小程序开发
  • wordpress 做手机站友情链接交换形式
  • 番禺网站建设设计软文推广平台排名
  • 做网站开发工具哪个好关键词有哪几种
  • 邯郸建网站快手刷评论推广网站
  • 西乡做网站费用百度seo关键词排名优化工具
  • 建设平台网站百度推广销售员好做吗
  • 网站建设服务类型现状上海seo公司排名榜
  • 妇女儿童心理咨询网站建设创建自己的网站
  • 网站做app收费标准网站应该如何进行优化
  • 地方门户网站管理系统网络推广平台有哪些?
  • 好看wordpress主题优化设计答案大全
  • 美国站点网站怎么做百度搜索引擎排名
  • 做网站的框架结构为什么不能去外包公司
  • 移动网站开发基础知识推广标题怎么写
  • 做微博类的网站难吗杭州seo网站
  • 在线购物网站 项目seo自动优化工具
  • 做个网站需要多钱二级子域名ip地址查询
  • 网站日志解析产品推广方式都有哪些
  • 哪个软件做网站最简单广点通广告平台