初版表设计导入

This commit is contained in:
guorui
2025-02-20 10:13:14 +08:00
parent dad6d41cbc
commit ff2321e858
212 changed files with 5896 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
package com.openhis.financial.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.financial.domain.Claim;
/**
* 索赔管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface ClaimMapper extends BaseMapper<Claim> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.financial.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.financial.domain.ClaimResponse;
/**
* 索赔响应管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface ClaimResponseMapper extends BaseMapper<ClaimResponse> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.financial.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.financial.domain.Contract;
/**
* 合同管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface ContractMapper extends BaseMapper<Contract> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.financial.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.financial.domain.PaymentNotice;
/**
* 合同管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface PaymentNoticeMapper extends BaseMapper<PaymentNotice> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.financial.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.financial.domain.PaymentRecDetail;
/**
* 付款管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface PaymentRecDetailMapper extends BaseMapper<PaymentRecDetail> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.financial.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.financial.domain.PaymentReconciliation;
/**
* 付款管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface PaymentReconciliationMapper extends BaseMapper<PaymentReconciliation> {
}