1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ltkj.hosp.domain;
|
| import com.ltkj.common.core.domain.BaseEntity;
| import lombok.Data;
|
| /**
| * ClassName: TjJcycxm <br/>
| * Description: <br/>
| * date: 2025/1/16 17:29<br/>
| *
| * @author zjh<br />
| */
| @Data
| public class TjJcycxm extends BaseEntity {
|
| private String id;
| private String tjh;
| private String proId;
| private String proName;
| private String yqid;
| private String jcjg;
| }
|
|