parent
8be3b7bdfb
commit
0400b2e49a
@ -1,16 +0,0 @@
|
|||||||
package com.example.api.model.vo;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@AllArgsConstructor
|
|
||||||
public class CommodityChartVo {
|
|
||||||
|
|
||||||
//商品名
|
|
||||||
private Integer value;
|
|
||||||
|
|
||||||
//数量
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
package com.example.api.repository;
|
|
||||||
|
|
||||||
import com.example.api.model.entity.Distribution;
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface DistributionRepository extends JpaRepository<Distribution, String> {
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
package com.example.api.repository;
|
|
||||||
|
|
||||||
import com.example.api.model.entity.Employee;
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface EmployeeRepository extends JpaRepository<Employee, String> {
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
package com.example.api.repository;
|
|
||||||
|
|
||||||
import com.example.api.model.entity.LoginLog;
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface LoginLogRepository extends JpaRepository<LoginLog,String> {
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
package com.example.api.repository;
|
|
||||||
|
|
||||||
import com.example.api.model.entity.SystemLog;
|
|
||||||
import org.springframework.data.jpa.domain.Specification;
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
|
||||||
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
||||||
import org.springframework.data.jpa.repository.Query;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface SystemLogRepository extends JpaRepository<SystemLog,String>, JpaSpecificationExecutor<SystemLog> {
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
package com.example.api.repository;
|
|
||||||
|
|
||||||
import com.example.api.model.entity.User;
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface UserRepository extends JpaRepository<User, String> {
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
package com.example.api.repository;
|
|
||||||
|
|
||||||
import com.example.api.model.entity.Warehouse;
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface WareHouseRepository extends JpaRepository<Warehouse, String> {
|
|
||||||
}
|
|
Loading…
Reference in new issue