6 changed files with 79 additions and 2 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import com.fasterxml.jackson.annotation.JsonIgnore; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/11/23 10:45 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AppointmentExistRecordResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 6651436509788141940L; |
||||
|
|
||||
|
/** |
||||
|
* 事项名 |
||||
|
*/ |
||||
|
private String matterName; |
||||
|
|
||||
|
private String matterId; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue