| | |
| | | package com.ltkj.hosp.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | |
| | | @TableField(exist = false) |
| | | private String tollCollectorName; |
| | | |
| | | @ApiModelProperty(value = "体检号") |
| | | @TableField(exist = false) |
| | | private String tjNumber; |
| | | |
| | | @ApiModelProperty(value = "体检项目名") |
| | | @TableField(exist = false) |
| | | private String tjProName; |
| | | |
| | | @ApiModelProperty(value = "单项ids") |
| | | @TableField(exist = false) |
| | | private String[] tjProIds; |
| | |
| | | */ |
| | | @Excel(name = "是否结账",dictType="sys_yes_no") |
| | | @ApiModelProperty(value = "是否结账") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String isCheckout; |
| | | |
| | | private String remarks; |