7 changed files with 59 additions and 4 deletions
@ -0,0 +1,9 @@ |
|||||||
|
package com.biutag.supervision.mapper; |
||||||
|
|
||||||
|
import com.baomidou.dynamic.datasource.annotation.DS; |
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.biutag.supervision.pojo.entity.DwdRyZfbaBaryxx; |
||||||
|
|
||||||
|
@DS("slave2") |
||||||
|
public interface DwdRyZfbaBaryxxMapper extends BaseMapper<DwdRyZfbaBaryxx> { |
||||||
|
} |
||||||
@ -0,0 +1,17 @@ |
|||||||
|
package com.biutag.supervision.pojo.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
/** |
||||||
|
* 保案人员信息 |
||||||
|
* */ |
||||||
|
@Getter |
||||||
|
@Setter |
||||||
|
public class DwdRyZfbaBaryxx { |
||||||
|
@TableField("zj") |
||||||
|
private String zj; |
||||||
|
@TableField("zjhm") |
||||||
|
private String zjhm; |
||||||
|
} |
||||||
@ -0,0 +1,10 @@ |
|||||||
|
package com.biutag.supervision.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.biutag.supervision.mapper.DwdRyZfbaBaryxxMapper; |
||||||
|
import com.biutag.supervision.pojo.entity.DwdRyZfbaBaryxx; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class DwdRyZfbaBaryxxService extends ServiceImpl<DwdRyZfbaBaryxxMapper, DwdRyZfbaBaryxx> { |
||||||
|
} |
||||||
Loading…
Reference in new issue