whyclxw
2 天以前 cf9a5039e6db9d1d5963e3fe1a37d00169ec2ef7
src/main/java/com/whyc/pojo/Material.java
@@ -19,8 +19,6 @@
    private Integer   id;
    @ApiModelProperty("母料编号")
    private String type;
    @ApiModelProperty("类别")
    private String category;
    @ApiModelProperty("子件编码")
    private String     subCode;
    @ApiModelProperty("子件名称")
@@ -57,6 +55,14 @@
    @TableField(exist = false)
    @ApiModelProperty(value = "附件锁定信息")
    private List<AttachLock> attachLocks;
    @TableField(exist = false)
    @ApiModelProperty(value = "是否存在附件:1存在,0无")
    private int hasAttachFlag;
    @TableField(exist = false)
    @ApiModelProperty(value = "附件目录下的文件列表")
    private List attachFileList;
    public Integer getId() {
@@ -195,11 +201,19 @@
        this.attachLocks = attachLocks;
    }
    public String getCategory() {
        return category;
    public int getHasAttachFlag() {
        return hasAttachFlag;
    }
    public void setCategory(String category) {
        this.category = category;
    public void setHasAttachFlag(int hasAttachFlag) {
        this.hasAttachFlag = hasAttachFlag;
    }
    public List getAttachFileList() {
        return attachFileList;
    }
    public void setAttachFileList(List attachFileList) {
        this.attachFileList = attachFileList;
    }
}