parent
d52e6e075d
commit
9fb7c065a3
@ -0,0 +1,9 @@ |
|||||||
|
package com.dxhy.erp.dao; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.dxhy.erp.entity.TdxPlatformCheckLog; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface TdxPlatformCheckLogDao extends BaseMapper<TdxPlatformCheckLog> { |
||||||
|
} |
@ -0,0 +1,34 @@ |
|||||||
|
package com.dxhy.erp.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
@Data |
||||||
|
@TableName("t_dx_platform_check_log") |
||||||
|
public class TdxPlatformCheckLog implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = -6703830991573450761L; |
||||||
|
|
||||||
|
//id
|
||||||
|
private Long id; |
||||||
|
|
||||||
|
//发票代码
|
||||||
|
private String invoiceCode; |
||||||
|
|
||||||
|
//发票号码
|
||||||
|
private String invoiceNo; |
||||||
|
|
||||||
|
//请求参数
|
||||||
|
private String requesPrams; |
||||||
|
|
||||||
|
//返回结果
|
||||||
|
private String returnResult; |
||||||
|
|
||||||
|
//查验时间
|
||||||
|
private Date chaeckDate; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,7 @@ |
|||||||
|
package com.dxhy.erp.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||||
|
import com.dxhy.erp.entity.TdxPlatformCheckLog; |
||||||
|
|
||||||
|
public interface TdxPlatformCheckLogService extends IService<TdxPlatformCheckLog> { |
||||||
|
} |
@ -0,0 +1,11 @@ |
|||||||
|
package com.dxhy.erp.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.dxhy.erp.dao.TdxPlatformCheckLogDao; |
||||||
|
import com.dxhy.erp.entity.TdxPlatformCheckLog; |
||||||
|
import com.dxhy.erp.service.TdxPlatformCheckLogService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class TdxPlatformCheckLogServiceImpl extends ServiceImpl<TdxPlatformCheckLogDao, TdxPlatformCheckLog> implements TdxPlatformCheckLogService { |
||||||
|
} |
Loading…
Reference in new issue