3 changed files with 53 additions and 0 deletions
@ -0,0 +1,13 @@
|
||||
package com.biutag.supervisiondata.mapper.wdpc2; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.biutag.supervisiondata.pojo.entity.wdpc2.WdpcGrjdHyqkb; |
||||
import com.biutag.supervisiondata.pojo.entity.wdpc2.WdpcGrjdJsbry; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-10 17:59:16 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
public interface WdpcGrjdHyqkbMapper extends BaseMapper<WdpcGrjdHyqkb> { |
||||
} |
||||
@ -0,0 +1,25 @@
|
||||
package com.biutag.supervisiondata.pojo.entity.wdpc2; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-10 17:57:58 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
@Data |
||||
@TableName("`wdpc_grjd_jsbry`") |
||||
public class WdpcGrjdHyqkb implements Serializable { |
||||
@TableField("`id_code`") |
||||
String idCode; |
||||
@TableField("`name`") |
||||
String name; |
||||
@TableField("`register_time`") |
||||
String registerTime; |
||||
@TableField("`status`") |
||||
String status; |
||||
} |
||||
@ -0,0 +1,15 @@
|
||||
package com.biutag.supervisiondata.repository; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.biutag.supervisiondata.mapper.wdpc2.WdpcGrjdHyqkbMapper; |
||||
import com.biutag.supervisiondata.pojo.entity.wdpc2.WdpcGrjdHyqkb; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* @author kami on 2024-12-10 17:59:47 |
||||
* @version 0.0.1 |
||||
* @since 1.8 |
||||
*/ |
||||
@Service |
||||
public class WdpcGrjdHyqkbRepository extends ServiceImpl<WdpcGrjdHyqkbMapper, WdpcGrjdHyqkb> { |
||||
} |
||||
Loading…
Reference in new issue