Quellcode durchsuchen

课程标签乱码修复

xw vor 4 Tagen
Ursprung
Commit
92c23d2b24

+ 5 - 5
fs-service/src/main/java/com/fs/hisStore/domain/FsStoreProductTagScrm.java

@@ -6,7 +6,7 @@ import lombok.Data;
 import lombok.EqualsAndHashCode;
 
 /**
- * 商品标签对象 fs_store_product_tag_scrm
+ * fs_store_product_tag_scrm 闂ㄥ簵鍟嗗搧鏍囩�琛�
  */
 @EqualsAndHashCode(callSuper = true)
 @Data
@@ -16,15 +16,15 @@ public class FsStoreProductTagScrm extends BaseEntity {
 
     private Long id;
 
-    @Excel(name = "店铺ID")
+    @Excel(name = "闂ㄥ簵ID")
     private Long storeId;
 
-    @Excel(name = "标签名称")
+    @Excel(name = "鏍囩�鍚嶇О")
     private String tagName;
 
-    @Excel(name = "状态", readConverterExp = "1=显示,0=隐藏")
+    @Excel(name = "鐘舵€�", readConverterExp = "1=鏄剧ず,0=闅愯棌")
     private Integer status;
 
-    @Excel(name = "排序")
+    @Excel(name = "鎺掑簭")
     private Long sort;
 }

+ 1 - 1
fs-service/src/main/java/com/fs/hisStore/mapper/FsStoreProductTagScrmMapper.java

@@ -8,7 +8,7 @@ import org.apache.ibatis.annotations.Param;
 import java.util.List;
 
 /**
- * ÉÌÆ·±êÇ© Mapper
+ * Mapper
  */
 public interface FsStoreProductTagScrmMapper {
 

+ 1 - 1
fs-service/src/main/java/com/fs/hisStore/service/IFsStoreProductTagScrmService.java

@@ -7,7 +7,7 @@ import com.fs.hisStore.vo.FsStoreTagProductVO;
 import java.util.List;
 
 /**
- * ÉĚơąęÇŠ Service ˝ÓżÚ
+ * Service
  */
 public interface IFsStoreProductTagScrmService {
 

+ 3 - 3
fs-service/src/main/java/com/fs/hisStore/service/impl/FsStoreProductTagScrmServiceImpl.java

@@ -14,7 +14,7 @@ import org.springframework.stereotype.Service;
 import java.util.List;
 
 /**
- * 商品标签 Service 实现
+ * Service
  */
 @Service
 public class FsStoreProductTagScrmServiceImpl implements IFsStoreProductTagScrmService {
@@ -48,7 +48,7 @@ public class FsStoreProductTagScrmServiceImpl implements IFsStoreProductTagScrmS
     @Override
     public int insert(FsStoreProductTagScrm entity) {
         if (entity.getTagName() != null && entity.getTagName().length() > 4) {
-            throw new ServiceException("标签名称最多4个字");
+            throw new ServiceException("锟斤拷签锟斤拷锟斤拷锟斤拷锟�4锟斤拷锟斤拷");
         }
         entity.setCreateTime(DateUtils.getNowDate());
         entity.setUpdateTime(DateUtils.getNowDate());
@@ -58,7 +58,7 @@ public class FsStoreProductTagScrmServiceImpl implements IFsStoreProductTagScrmS
     @Override
     public int update(FsStoreProductTagScrm entity) {
         if (entity.getTagName() != null && entity.getTagName().length() > 4) {
-            throw new ServiceException("标签名称最多4个字");
+            throw new ServiceException("锟斤拷签锟斤拷锟斤拷锟斤拷锟�4锟斤拷锟斤拷");
         }
         entity.setUpdateTime(DateUtils.getNowDate());
         return mapper.update(entity);

+ 1 - 1
fs-service/src/main/java/com/fs/hisStore/vo/FsStoreProductTagListVO.java

@@ -6,7 +6,7 @@ import java.io.Serializable;
 import java.util.Date;
 
 /**
- * 商品标签列表VO(含关联商品数量)
+ *
  */
 @Data
 public class FsStoreProductTagListVO implements Serializable {

+ 1 - 1
fs-service/src/main/java/com/fs/hisStore/vo/FsStoreTagProductVO.java

@@ -6,7 +6,7 @@ import java.io.Serializable;
 import java.math.BigDecimal;
 
 /**
- * ±êÇ©¹ØÁªÉÌÆ·Ïî
+ *
  */
 @Data
 public class FsStoreTagProductVO implements Serializable {