|
@ -1,28 +0,0 @@ |
|
|
package com.storeroom.modules.dictionary.domain.vo; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude; |
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
|
|
|
|
@Data |
|
|
|
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY) |
|
|
|
|
|
public class ArchivesTypeVo implements Serializable { |
|
|
|
|
|
|
|
|
|
|
|
private String id; |
|
|
|
|
|
|
|
|
|
|
|
private String cnName; |
|
|
|
|
|
|
|
|
|
|
|
private String enName; |
|
|
|
|
|
|
|
|
|
|
|
private String pid; |
|
|
|
|
|
|
|
|
|
|
|
private Integer isType; |
|
|
|
|
|
|
|
|
|
|
|
private Integer isTypeMetic; |
|
|
|
|
|
|
|
|
|
|
|
private Integer categorySeq; |
|
|
|
|
|
|
|
|
|
|
|
private String remark; |
|
|
|
|
|
} |
|
|
|