package com.ubt.jimu.diy.model; /* loaded from: classes.dex */ public class DiyModel { private long customModelCreatetime; private String customModelId; private Long id; private String image; private short star; private String title; private int type; public DiyModel(Long l, int i, String str, String str2, short s, String str3, long j) { this.id = l; this.type = i; this.title = str; this.image = str2; this.star = s; this.customModelId = str3; this.customModelCreatetime = j; } public long getCustomModelCreatetime() { return this.customModelCreatetime; } public String getCustomModelId() { return this.customModelId; } public Long getId() { return this.id; } public String getImage() { return this.image; } public short getStar() { return this.star; } public String getTitle() { return this.title; } public int getType() { return this.type; } public void setCustomModelCreatetime(long j) { this.customModelCreatetime = j; } public void setCustomModelId(String str) { this.customModelId = str; } public void setId(Long l) { this.id = l; } public void setImage(String str) { this.image = str; } public void setStar(short s) { this.star = s; } public void setTitle(String str) { this.title = str; } public void setType(int i) { this.type = i; } public DiyModel() { } }