Commit 9eef4f980a1bdf836f97c2b84cdb024e550e67d4

Authored by landong2015
1 parent d5216d40d5

提交代码

Showing 1 changed file with 20 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/EmergenceTreatmentRequest.java View file @ 9eef4f9
  1 +package com.lyms.platform.operate.web.request;
  2 +
  3 +import com.lyms.platform.common.core.annotation.form.Form;
  4 +
  5 +/**
  6 + * Created by Administrator on 2016/10/14 0014.
  7 + */
  8 +@Form
  9 +public class EmergenceTreatmentRequest extends BasePageQueryRequest{
  10 +
  11 + private String id;
  12 +
  13 + public String getId() {
  14 + return id;
  15 + }
  16 +
  17 + public void setId(String id) {
  18 + this.id = id;
  19 + }
  20 +}