丽知:新增u8c实体:arap_djzb

This commit is contained in:
zhengyf 2024-11-21 13:37:17 +08:00
parent b17dca577b
commit caa0b9f37c
5 changed files with 2309 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package com.hzya.frame.plugin.lets.dao;
import com.hzya.frame.plugin.lets.entity.ArapDjzbEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* (ARAP_DJZB: table)表数据库访问层
*
* @author makejava
* @since 2024-11-21 11:26:53
*/
public interface IArapDjzbDao extends IBaseDao<ArapDjzbEntity, String> {
}

View File

@ -0,0 +1,16 @@
package com.hzya.frame.plugin.lets.dao.impl;
import com.hzya.frame.plugin.lets.entity.ArapDjzbEntity;
import com.hzya.frame.plugin.lets.dao.IArapDjzbDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* (ArapDjzb)表数据库访问层
*
* @author makejava
* @since 2024-11-21 11:26:53
*/
public class ArapDjzbDaoImpl extends MybatisGenericDao<ArapDjzbEntity, String> implements IArapDjzbDao{
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -66,4 +66,5 @@
<bean name="onlyAfterSalesBDao" class="com.hzya.frame.plugin.lets.dao.impl.OnlyAfterSalesBDaoImpl"/>
<bean name="iaPeriodaccountDao" class="com.hzya.frame.plugin.lets.dao.impl.IaPeriodaccountDaoImpl"/>
<bean name="arapDjzbDaoImpl" class="com.hzya.frame.plugin.lets.dao.impl.ArapDjzbDaoImpl"/>
</beans>