GreenDao 主键自增 UNIQUE constraint failed: VISITOR_MODEL._id (code 1555)

@SuppressWarnings("serial")
@Entity
public class VisitorModel implements Serializable {
    /// Id
    @Id(autoincrement = true)
    public Long   ID;
    }

将long改为Long ;

你可能感兴趣的:(GreenDao,主键自增)