yang_shj
11 months ago
11 changed files with 116 additions and 8 deletions
@ -0,0 +1,25 @@
|
||||
package com.hnac.hzims.operational.duty.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @author ysj |
||||
*/ |
||||
@Data |
||||
public class DutyGroupMemberVo { |
||||
|
||||
@ApiModelProperty(value = "班组Id") |
||||
private String groupId; |
||||
|
||||
@ApiModelProperty(value = "班组名称") |
||||
private String groupName; |
||||
|
||||
@ApiModelProperty(value = "机构Id") |
||||
private String createDept; |
||||
|
||||
@ApiModelProperty(value = "班组成员对象") |
||||
private List<DutyMemberVO> member; |
||||
} |
@ -0,0 +1,21 @@
|
||||
package com.hnac.hzims.operational.duty.vo; |
||||
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
||||
import com.fasterxml.jackson.databind.ser.std.NullSerializer; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @author ysj |
||||
*/ |
||||
@Data |
||||
public class DutyMemberVO { |
||||
|
||||
@ApiModelProperty(value = "班组人员Id") |
||||
@JsonSerialize(nullsUsing = NullSerializer.class) |
||||
private Long personId; |
||||
|
||||
@ApiModelProperty(value = "班组人员名称") |
||||
private String personName; |
||||
|
||||
} |
Loading…
Reference in new issue