This commit is contained in:
王奎兴
2026-04-30 14:57:13 +08:00
parent 7e00ca52c9
commit 0b141796a1
13 changed files with 671 additions and 0 deletions
@@ -0,0 +1,28 @@
package com.mhd.bi.domain.testTable.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.mhd.common.core.annotation.Excel;
import com.mhd.common.core.web.domain.BaseVOEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class TestTable implements Serializable {
private static final long serialVersionUID = 1L;
/** 车队id */
@ApiModelProperty("车队id")
@TableId(type = IdType.AUTO)
private Long id;
@ApiModelProperty(name = "txt")
private String txt;
}
@@ -0,0 +1,8 @@
package com.mhd.bi.domain.testTable.repository.facade;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mhd.bi.domain.testTable.entity.TestTable;
public interface TestTableService extends IService<TestTable>
{
}
@@ -0,0 +1,16 @@
package com.mhd.bi.domain.testTable.repository.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mhd.bi.domain.testTable.entity.TestTable;
import java.util.List;
/**
* 车队Mapper接口
*
* @author zihao
* @date 2023-05-24
*/
public interface TestTableMapper extends BaseMapper<TestTable>
{
}
@@ -0,0 +1,16 @@
package com.mhd.bi.domain.testTable.repository.persistence;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.mhd.bi.domain.testTable.entity.TestTable;
import com.mhd.bi.domain.testTable.repository.facade.TestTableService;
import com.mhd.bi.domain.testTable.repository.mapper.TestTableMapper;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
@Service
public class TestTableServiceImpl extends ServiceImpl<TestTableMapper, TestTable> implements TestTableService {
}