Merge branch 'feature/REQ-1858' into 'pre'
REQ-1858: 给PersonV3DTO添加无参构造函数 See merge request universal/infrastructure/backend/msg-center-plat!326
This commit is contained in:
commit
e426fb0ab5
@ -1,7 +1,8 @@
|
||||
package cn.axzo.msg.center.service.dto;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ -9,7 +10,8 @@ import java.io.Serializable;
|
||||
* @author yanglin
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class PersonV3DTO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1231840051925115741L;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user