ljw 2025-12-11 15:08:12 +08:00
parent d529c924a3
commit b4b2cefe75
51 changed files with 51 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import java.time.LocalDateTime;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface DriverMapper extends BaseMapper<DriverEntity> { public interface DriverMapper extends BaseMapper<DriverEntity> {

View File

@ -11,6 +11,7 @@ import java.time.LocalDateTime;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface DriverService extends IService<DriverEntity> { public interface DriverService extends IService<DriverEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface ProjectMapper extends BaseMapper<ProjectEntity> { public interface ProjectMapper extends BaseMapper<ProjectEntity> {

View File

@ -11,6 +11,7 @@ import java.time.LocalDate;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface ProjectService extends IService<ProjectEntity> { public interface ProjectService extends IService<ProjectEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface StationMapper extends BaseMapper<StationEntity> { public interface StationMapper extends BaseMapper<StationEntity> {

View File

@ -9,6 +9,7 @@ import lombok.experimental.Accessors;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface StationService extends IService<StationEntity> { public interface StationService extends IService<StationEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface TruckMapper extends BaseMapper<TruckEntity> { public interface TruckMapper extends BaseMapper<TruckEntity> {

View File

@ -11,6 +11,7 @@ import java.time.LocalDate;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface TruckService extends IService<TruckEntity> { public interface TruckService extends IService<TruckEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface BillMapper extends BaseMapper<BillEntity> { public interface BillMapper extends BaseMapper<BillEntity> {

View File

@ -12,6 +12,7 @@ import java.time.LocalDate;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface BillService extends IService<BillEntity> { public interface BillService extends IService<BillEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface ExpenseItemMapper extends BaseMapper<ExpenseItemEntity> { public interface ExpenseItemMapper extends BaseMapper<ExpenseItemEntity> {

View File

@ -13,6 +13,7 @@ import java.math.BigDecimal;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface ExpenseItemService extends IService<ExpenseItemEntity> { public interface ExpenseItemService extends IService<ExpenseItemEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface MoneyAccountMapper extends BaseMapper<MoneyAccountEntity> { public interface MoneyAccountMapper extends BaseMapper<MoneyAccountEntity> {

View File

@ -11,6 +11,7 @@ import java.math.BigDecimal;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface MoneyAccountService extends IService<MoneyAccountEntity> { public interface MoneyAccountService extends IService<MoneyAccountEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface MoneyFlowMapper extends BaseMapper<MoneyFlowEntity> { public interface MoneyFlowMapper extends BaseMapper<MoneyFlowEntity> {

View File

@ -11,6 +11,7 @@ import java.math.BigDecimal;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface MoneyFlowService extends IService<MoneyFlowEntity> { public interface MoneyFlowService extends IService<MoneyFlowEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface GoodsMapper extends BaseMapper<GoodsEntity> { public interface GoodsMapper extends BaseMapper<GoodsEntity> {

View File

@ -9,6 +9,7 @@ import lombok.experimental.Accessors;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface GoodsService extends IService<GoodsEntity> { public interface GoodsService extends IService<GoodsEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -13,6 +13,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@RestController @RestController

View File

@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
* @author ljw
*/ */
@Mapper @Mapper
public interface GoodsCategoryMapper extends BaseMapper<GoodsCategoryEntity> { public interface GoodsCategoryMapper extends BaseMapper<GoodsCategoryEntity> {

View File

@ -9,6 +9,7 @@ import lombok.experimental.Accessors;
/** /**
* *
* @author ljw
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -9,6 +9,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
public interface GoodsCategoryService extends IService<GoodsCategoryEntity> { public interface GoodsCategoryService extends IService<GoodsCategoryEntity> {

View File

@ -16,6 +16,7 @@ import java.util.List;
/** /**
* *
* @author ljw
*/ */
@Slf4j @Slf4j
@Service @Service