| | |
| | | */ |
| | | @ApiOperation("获取序列号") |
| | | @GetMapping("/getSequence") |
| | | public AjaxResult getSequence( String businessType, String orgId) { |
| | | public AjaxResult getSequence(String businessType, String orgId) { |
| | | |
| | | return AjaxResult.success(baseOnlyvalueService.getSequence(businessType, orgId)); |
| | | } |
| | |
| | | @Excel(name = "协调员姓名", readConverterExp = "协调员姓名") |
| | | private String coordinatorName; |
| | | |
| | | |
| | | @ApiModelProperty("入院时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date entryTime; |
| | | } |
| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * 捐献上报基础对象 service_donatebaseinfo_report |
| | |
| | | @Excel(name = "确认时间", readConverterExp = "确认时间") |
| | | private Date confirmTime; |
| | | |
| | | @ApiModelProperty("入院时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date entryTime; |
| | | |
| | | } |
| | | |
| | |
| | | <result property="currentHospital" column="current_hospital"/> |
| | | <result property="terminationType" column="termination_type"/> |
| | | <result property="extracontent" column="extracontent"/> |
| | | <result property="entryTime" column="entry_time"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectServiceDonatebaseinfoVo"> |
| | |
| | | <result property="coordinatorNo" column="coordinator_no"/> |
| | | <result property="infoName" column="info_name"/> |
| | | <result property="infoNo" column="info_no"/> |
| | | <result property="entryTime" column="entry_time"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectServiceDonatebaseinfoReportVo"> |
| | |
| | | user_name, |
| | | dept_no, |
| | | dept_name, |
| | | is_transport |
| | | is_transport, |
| | | entry_time |
| | | from service_donatebaseinfo_report |
| | | </sql> |
| | | |