8 changed files with 103 additions and 2 deletions
@ -0,0 +1,12 @@
|
||||
package com.biutag.supervisiondata.mapper.wdpc; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.biutag.supervisiondata.pojo.entity.wdpc.WdpcGrjdXfsjCs; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-03 16:47:43 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
public interface WdpcGrjdXfsjCsMapper extends BaseMapper<WdpcGrjdXfsjCs> { |
||||
} |
||||
@ -0,0 +1,12 @@
|
||||
package com.biutag.supervisiondata.mapper.wdpc; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.biutag.supervisiondata.pojo.entity.wdpc.WdpcGrjdXfsj; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-03 16:47:43 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
public interface WdpcGrjdXfsjMapper extends BaseMapper<WdpcGrjdXfsj> { |
||||
} |
||||
@ -0,0 +1,20 @@
|
||||
package com.biutag.supervisiondata.pojo.entity.wdpc; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-04 16:16:01 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
@Data |
||||
@TableName("`wdpc_grjd_xfsj`") |
||||
public class WdpcGrjdXfsj { |
||||
|
||||
@TableField("`name`") |
||||
String name; |
||||
@TableField("`id_code`") |
||||
String idCode; |
||||
} |
||||
@ -0,0 +1,20 @@
|
||||
package com.biutag.supervisiondata.pojo.entity.wdpc; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-04 16:16:01 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
@Data |
||||
@TableName("`wdpc_grjd_xfsj_cs`") |
||||
public class WdpcGrjdXfsjCs { |
||||
|
||||
@TableField("`name`") |
||||
String name; |
||||
@TableField("`id_code`") |
||||
String idCode; |
||||
} |
||||
@ -0,0 +1,15 @@
|
||||
package com.biutag.supervisiondata.repository; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.biutag.supervisiondata.mapper.wdpc.WdpcGrjdXfsjCsMapper; |
||||
import com.biutag.supervisiondata.pojo.entity.wdpc.WdpcGrjdXfsjCs; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-04 16:18:26 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
@Service |
||||
public class WdpcGrjdXfsjCsRepository extends ServiceImpl<WdpcGrjdXfsjCsMapper, WdpcGrjdXfsjCs> { |
||||
} |
||||
@ -0,0 +1,15 @@
|
||||
package com.biutag.supervisiondata.repository; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.biutag.supervisiondata.mapper.wdpc.WdpcGrjdXfsjMapper; |
||||
import com.biutag.supervisiondata.pojo.entity.wdpc.WdpcGrjdXfsj; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-04 16:18:26 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
@Service |
||||
public class WdpcGrjdXfsjRepository extends ServiceImpl<WdpcGrjdXfsjMapper, WdpcGrjdXfsj> { |
||||
} |
||||
Loading…
Reference in new issue