4 changed files with 40 additions and 2 deletions
@ -0,0 +1,18 @@ |
|||||||
|
package com.biutag.supervisiondata.pojo.entity.wdpc2; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author kami on 2024-12-18 18:00 |
||||||
|
* @version 1.0 |
||||||
|
* @since 1.8 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@TableName("`wdpc_jjd_summary`") |
||||||
|
public class WdpcJJDSummary { |
||||||
|
|
||||||
|
String jjdbh; |
||||||
|
|
||||||
|
String content; |
||||||
|
} |
||||||
@ -0,0 +1,18 @@ |
|||||||
|
package com.biutag.supervisiondata.rest; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author kami on 2024-12-18 17:59 |
||||||
|
* @version 1.0 |
||||||
|
* @since 1.8 |
||||||
|
*/ |
||||||
|
@Slf4j |
||||||
|
@RestController |
||||||
|
@RequestMapping("/ai") |
||||||
|
@AllArgsConstructor |
||||||
|
public class AiController { |
||||||
|
} |
||||||
Loading…
Reference in new issue