tangchuanxing_branch
CR7 9 months ago
parent fe3554e6f3
commit 2476fe3158

@ -0,0 +1,36 @@
/*
* Copyright (c) 2018-2999 广 All rights reserved.
*
* https://www.mall4j.com/
*
*
*
*
*/
package com.yami.shop.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.yami.shop.bean.model.CategoryProp;
import com.yami.shop.dao.CategoryPropMapper;
import com.yami.shop.service.CategoryPropService;
/**
*
*
* @author lanhai
*/
@Service
public class CategoryPropServiceImpl extends ServiceImpl<CategoryPropMapper, CategoryProp> implements CategoryPropService {
/**
* CategoryPropMapper
*/
@Autowired
private CategoryPropMapper categoryPropMapper;
// 该类目前为空继承了ServiceImpl的所有方法可以添加自定义的方法实现
}
Loading…
Cancel
Save